Can I re-submit the same version of my app in google play?
android, google-play
Solution
Yes, you can still use the same version. What it's asking for is `versionCode`, which you can increment from 1 to 2 in your `AndroidManifest.xml` (look for something like `android:versionCode="1"`).
There's more information here: http://developer.android.com/tools/publishing/versioning.html
android:versionCode — An integer value that represents the version of the application code, relative to other versions.
The value is an integer so that other applications can programmatically evaluate it, for example to check an upgrade or downgrade relationship. You can set the value to any integer you want, however you should make sure that each successive release of your application uses a greater value. The system does not enforce this behavior, but increasing the value with successive releases is normative.
Typically, you would release the first version of your application with versionCode set to 1, then monotonically increase the value with each release, regardless whether the release constitutes a major or minor release. This means that the android:versionCode value does not necessarily have a strong resemblance to the application release version that is visible to the user (see android:versionName, below). Applications and publishing services should not display this version value to users.
Problem
I have accidentally uploaded a wrong version of my app in google play. Its version is 1.0. Now I am trying to upload the updated apk file using the same version which is 1.0. Is it still possible? I tried but I always got this error message: You need to use a different version code for your APK because you already have one with version code 1. I try to unpublish it but I think I still need to wait for few hours. Most of the time, how long would this take?