-
-
Save Epictetus/2188762 to your computer and use it in GitHub Desktop.
Steps to make Android APK file created by App Inventor publishable
This file contains 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
# apktool d -s sample.apk sample | |
# cd sample | |
# vi AndroidManifest.xml | |
- Add android:versionCode="1" to manifest tag | |
- Add android:versionName="1.0" to manifest tag | |
- Delete android:debuggable="true" from application tag | |
# apktool b sample sample-m.apk | |
# jarsigner -keystore sample.keystore -signedjar sample-s.apk sample-m.apk alias | |
# zipalign 4 sample-s.apk sample-z.apk | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment