From af5ac2efc447fe0b3f6d878d00144c533cc75b82 Mon Sep 17 00:00:00 2001 From: codebymikey <9484406+codebymikey@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:39:11 +0100 Subject: [PATCH] Add ability to automatically pick up latest apktool.jar version --- scripts/linux/apktool | 17 +++++++++++------ scripts/osx/apktool | 18 ++++++++++++------ 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/scripts/linux/apktool b/scripts/linux/apktool index d81ef520b5..b89d406080 100755 --- a/scripts/linux/apktool +++ b/scripts/linux/apktool @@ -14,8 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# This script is a wrapper for smali.jar, so you can simply call "smali", -# instead of java -jar smali.jar. It is heavily based on the "dx" script +# This script is a wrapper for apktool.jar, so you can simply call "apktool", +# instead of java -jar apktool.jar. It is heavily based on the "dx" script # from the Android SDK # Set up prog to be the path of this script, including following symlinks, @@ -41,10 +41,15 @@ cd "${oldwd}" jarfile=apktool.jar libdir="$progdir" -if [ ! -r "$libdir/$jarfile" ] -then - echo `basename "$prog"`": can't find $jarfile" - exit 1 +if [ ! -r "$libdir/$jarfile" ]; then + # Find the highest version of apktool_*.jar in the directory. + highest_jarfile=$(ls "$libdir"/apktool_*.jar 2>/dev/null | sort -V | tail -n 1) + if [ -n "$highest_jarfile" ]; then + jarfile=$(basename "$highest_jarfile") + else + echo `basename "$prog"`": can't find $jarfile" + exit 1 + fi fi javaOpts="" diff --git a/scripts/osx/apktool b/scripts/osx/apktool index ce14198eea..844d12a5f7 100755 --- a/scripts/osx/apktool +++ b/scripts/osx/apktool @@ -14,8 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# This script is a wrapper for smali.jar, so you can simply call "smali", -# instead of java -jar smali.jar. It is heavily based on the "dx" script +# This script is a wrapper for apktool.jar, so you can simply call "apktool", +# instead of java -jar apktool.jar. It is heavily based on the "dx" script # from the Android SDK # Set up prog to be the path of this script, including following symlinks, @@ -43,8 +43,14 @@ jarfile=apktool.jar libdir="$progdir" if [ ! -r "$libdir/$jarfile" ] then - echo `basename "$prog"`": can't find $jarfile" - exit 1 + # Find the highest version of apktool_*.jar in the directory. + highest_jarfile=$(ls "$libdir"/apktool_*.jar 2>/dev/null | sort -V | tail -n 1) + if [ -n "$highest_jarfile" ]; then + jarfile=$(basename "$highest_jarfile") + else + echo `basename "$prog"`": can't find $jarfile" + exit 1 + fi fi javaOpts="" @@ -66,9 +72,9 @@ while expr "x$1" : 'x-J' >/dev/null; do done if [ "$OSTYPE" = "cygwin" ] ; then - jarpath=`cygpath -w "$libdir/$jarfile"` + jarpath=`cygpath -w "$libdir/$jarfile"` else - jarpath="$libdir/$jarfile" + jarpath="$libdir/$jarfile" fi # add current location to path for aapt