mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-22 23:25:02 -06:00
commit
793c08d056
2 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ The Rabbit R1 Launcher Project aims to adapt the Rabbit R1 Launcher for use acro
|
|||
- **Java:** Ensure Java is installed on your system. Java is used primarily for signing the APKs and should not be used to modify the Smali directly.
|
||||
- **Apktool:** For building and reversing Android APKs. Install Apktool from [Apktool official page](https://ibotpeaches.github.io/Apktool/install/).
|
||||
- **Uber APK Signer:** This tool is used for signing the built APKs. Download it from [its GitHub repository](https://github.com/patrickfav/uber-apk-signer).
|
||||
(rename file to ```uber-apk-signer.jar``` and place into the cloned repository)
|
||||
- **jadx:** A Dex to Java decompiler. Install jadx from [GitHub](https://github.com/skylot/jadx).
|
||||
|
||||
### Usage
|
||||
|
|
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"
|
||||
|
||||
# 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"
|
||||
|
|
Loading…
Reference in a new issue