Tuesday, December 18, 2012

How to upgrade Android app in Google Play (Android Market)

Check this link
http://developer.appcelerator.com/question/20271/publish-an-application-upgrade-on-android-market-not-work

from above link

Go to your YourApp/build/android/ folder. Make a copy of your AndroidManifest.xml. Rename it to AndroidManifest.custom.xml.
Change following lines: android:versionCode="1" android:versionName="1"
to: android:versionCode="2" // A number higher than the one above android:versionName="1.1" // Version number to show
Leave both files and recompile and zipalign. This works with me.

No comments:

Post a Comment