Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to publish an update to application on the android market?

Tags:

android

I already have an application on the android market and now I want to upload an update to that application. I have made the new application with the same package name, I have incremented the version code and name , I have signed with the same key-store...etc. Now I want to know how to publish an update.

Do I upload the update as a separate application? or how else do I do it?

EDIT: Does the apk name need to be same as the previous version? I mean if my apk name for the original version is abc.apk can my update name be xyz.apk?

like image 952
user590849 Avatar asked Apr 18 '11 08:04

user590849


People also ask

How do I get published to publish an app?

On the left menu, select Publishing overview. Check that all your changes have been approved and are listed under “Changes ready to publish.” Select Review and publish. After you confirm that you want to publish, your update will be published on Google Play within a few minutes.


2 Answers

You need to upload your new app as the same app as previous version except you need to increment the version number in manifest xml.

So if you have manifest file like following:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"              android:versionCode="1"       . . .   </manifest> 

You will need following:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"              android:versionCode="2"       . . .   </manifest> 
like image 183
katsuya Avatar answered Sep 18 '22 07:09

katsuya


@knoguchi is rite.

for that you should:

1) Unpublished app from market(Your published apk can't delete it will be deactive only.)

2) after that in you Latest menifest add

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

You will need following:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="1.1" . . . </manifest> 

3) And sign again your apk from eclipde->Android tools->Export singed application package-> sign it->

4) Upload that Apk to market.

Hope it will help.

like image 26
Siten Avatar answered Sep 18 '22 07:09

Siten