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
This commit is contained in:
Fiotux 2024-07-12 21:14:35 +02:00 committed by GitHub
parent 7f2b0371ee
commit 7fb40e6c4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ esac
apktool b "${build_type}/smali" -o "${build_type}/apk/Rabbit R1 ${build_type}.apk" apktool b "${build_type}/smali" -o "${build_type}/apk/Rabbit R1 ${build_type}.apk"
# Sign the 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 # Rename the signed APK
mv "${build_type}/apk/Rabbit R1 ${build_type}-aligned-debugSigned.apk" "${build_type}/apk/Rabbit R1 ${build_type}.apk" mv "${build_type}/apk/Rabbit R1 ${build_type}-aligned-debugSigned.apk" "${build_type}/apk/Rabbit R1 ${build_type}.apk"