Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to move app from production to beta android

I have uploaded my app in production by mistake. Now, I am trying to upload it to the beta version. and it says that:

Upload failed You need to use a different version code for your APK because you already have one with version code 1.

What should I do to upload the same apk to the beta version and remove existing from production? I have unpublished the app. Do I need to wait for some time or any suggestions to overcome this issue?

PS: I don't want to change package name and upload new apk on the server.

like image 860
Ronak Patel Avatar asked Mar 04 '15 15:03

Ronak Patel


2 Answers

You cannot publish an apk file with the same version code. You have already published an apk with a versionCode of 1. Simply update the version code in your Manifest.xml. For example:

<manifest android:versionCode="2" ...>

like image 118
bwegs Avatar answered Sep 23 '22 07:09

bwegs


On the right side of the Developer Console in your APK window there's a button that says "Switch to advanced mode." Activate advanced mode by pressing that button.

picture of advanced mode button

Once selected, a dropdown will appear under the "Actions" column for your APK, and you can select to move your application between alpha, beta, and production.Below's image shows what that menu looks like for an APK in beta.

picture of drop down menu

like image 23
Christina Avatar answered Sep 20 '22 07:09

Christina