Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I re-submit the same version of my app in google play? [closed]

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?

like image 604
JunM Avatar asked Feb 26 '14 01:02

JunM


People also ask

What happens when you submit an app update to Google Play?

For those who know, Google Play considers each app update as a new app submission so when you submit an app update it is the same as when you submit an app for the first time. In my case, I was surprised because my app got approved the first time, but when I tried to submit an update .. the update has been rejected!

How do I submit an app to Google Play console?

The first step is to import your app into Google Play Console. You can do this by opening Google Play Console and going to “Create Application.” At this point, you’ll need to title your app, but you can still change it before you submit your app for review. You’ll also need to sign your app.

Can I re-publish my app on Google Play Store?

Re-Publishing My App on Google Play Store After they have accepted my appeal, I logged back to my Google Play developer account and I found that my app status has been changed from “Suspended” to “Removed” status as shown in the image below: In order to re-publish my app on Google Play store, I have taken the following steps:

Should I submit my app as a new app?

If you feel you have fixed the problem, you can go ahead and submit an update with your compliant version of your app. There is no need to submit it as a new app because it won’t make any difference in Googleplay eyes.


2 Answers

Inside the AndroidManifest.xml file, there are two lines at the top one for versionCode and one for versionName.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myapp"
    android:versionCode="1"
    android:versionName="1.0" >

The one for versionName doesn't actually matter what is there, it is for mainly the developer and consumers to know which version the app is on. The versionCode is intended for the developer only, as it is the only number that matters. The versionCode must increment on every release to the Play Store. Generally, the versionCode is either a plain number that increments with every release, or has a specific style to it, such as YYYYMMDD, as this number will always increment with the passing days.

Hope this helps!

like image 174
Adam Avatar answered Nov 08 '22 22:11

Adam


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.

like image 35
Waynn Lue Avatar answered Nov 08 '22 21:11

Waynn Lue