mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-23 07:35:06 -06:00
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:
parent
7f2b0371ee
commit
7fb40e6c4b
1 changed files with 1 additions and 1 deletions
2
build.sh
2
build.sh
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue