-
-
Save ricsirigu/5377c0a02d4fed6be656b961a3d9c05b to your computer and use it in GitHub Desktop.
Recompile APK + Sign with apktool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You must first install apktool (https://github.com/iBotPeaches/Apktool) and android SDK | |
# and decompile apk using it | |
# apktool d -rf my-app.apk | |
# then generate a key for sign in: | |
# keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 | |
rm signed-app.apk | |
apktool b -f -d com.myapp | |
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore com.myapp/dist/com.myapp.apk alias_name | |
zipalign -v 4 com.myapp/dist/com.myapp.apk signed-app.apk | |
adb -d install -r signed-app.apk | |
adb shell am start -n com.myapp/com.myApp.MainActivity | |
adb logcat | grep -E 'filter-logcat1|filter-logcat2|...' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment