Reputation: 123
I already made and published an app on Google Play.
Now, I need to upload a new version of it...but I need "new version code" on the same package... How to do it with Eclipse?
I hope I'm enough clear.
Thank you
Upvotes: 0
Views: 488
Reputation: 7979
In your AndroidManifest.xml, increment the versionCode
.
android:versionCode="1"
Upvotes: 1