Reputation: 1
Sorry, I was a noob on this field. I use an eclipse to make an android app, and I need an answer about how to update the version of my app. Also, does the update replace everything in the project?
Upvotes: 0
Views: 97
Reputation: 1
Go to Developer console page and upload the new .apk file. Make sure in the new apk, android:versionCode (in Manifest file) is bumped. Otherwise you will get an error. In the Developer console page both versions will be available. You can choose which app version you want in the field.
Upvotes: 0
Reputation: 30611
All you have to do is publish your newly built APK in your Android Developer Console. The old APK is replaced with the new one. Remember to update the android:versionCode
element in your manifest. You have to increment it by +1. This way when your users open the Play Store app on their devices, they will receive a notification that the application needs to be updated.
Upvotes: 0
Reputation: 969
You go to the Google Play Developer Console just like the first time, and upload a new .apk.
This means you're completely replacing the app, but not anything else you've set up in the console, such as preview images and description text.
Upvotes: 1