From 7fb40e6c4b8cc7f506ae98a104f57592b8ca4934 Mon Sep 17 00:00:00 2001 From: Fiotux <74451820+Fiotux@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:14:35 +0200 Subject: [PATCH] uber apk signer fix The original sh file contained a file path, that wasn't relative and wouldn't work like this an any system --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index b0af8f7f..9e50aecd 100755 --- a/build.sh +++ b/build.sh @@ -29,7 +29,7 @@ esac apktool b "${build_type}/smali" -o "${build_type}/apk/Rabbit R1 ${build_type}.apk" # Sign the APK -java -jar "/Users/Andrew/Downloads/Uber APK Signer 1.jar" --apks "${build_type}/apk/Rabbit R1 ${build_type}.apk" +java -jar "./uber-apk-signer.jar" --apks "${build_type}/apk/Rabbit R1 ${build_type}.apk" # Rename the signed APK mv "${build_type}/apk/Rabbit R1 ${build_type}-aligned-debugSigned.apk" "${build_type}/apk/Rabbit R1 ${build_type}.apk"