How to Publish a App Inventor Application to the Android Market - wikiHow
from wikiHow - The How to Manual That You Can Edit
This tutorial will show you how to format your App Inventor application to be published at the Android Market. You can use a Mac(which I use) or a PC
This tutorial will show you how to format your App Inventor application to be published at the Android Market. You can use a Mac(which I use) or a PC
Steps
- Download the application APK to your Mac or PC
- Use apktool to decompile the APK
- apktool d -s yourapp.apk
- apktool d -s yourapp.apk
- Edit what you want(i.e. Icon, App Name, Permissions...)
- Compile the package again
- apktool b yourapp
- apktool b yourapp
- Sign the APK using your own keystore
- jarsigner -verbose -keystore my-release-key.keystore my_application.apk alias_name
- jarsigner -verbose -keystore my-release-key.keystore my_application.apk alias_name
- Verify if the APK is correctly signed
- jarsigner -verify -verbose -certs my_application.apk
- jarsigner -verify -verbose -certs my_application.apk
- Align the APK
- zipalign -v 4 your_project_name-unaligned.apk your_project_name.apk
- zipalign -v 4 your_project_name-unaligned.apk your_project_name.apk
- Your application is ready to go!
- Publish at the Android Market
Tips
- For further informations and help about Signing and Aligning visit Signing Your Applications | Android Developers
Things You'll Need
- App Inventor access
- Android Market developer account
- apktool
- Mac or PC
- Patience
Article provided by wikiHow, a wiki how-to manual. Please edit this article and find author credits at the original wikiHow article on How to Publish a App Inventor Application to the Android Market. All content on wikiHow can be shared under a Creative Commons license.