Sukitha Udugamasooriya
Sukitha Udugamasooriya

Reputation: 2308

Process in updating my app in the market

i have released a version 1 on some app in the market. Can anyone tell me how to give an update of it?

thanks

Upvotes: 3

Views: 1198

Answers (3)

lbedogni
lbedogni

Reputation: 8007

Just make an upgrade apk with the android:versionCode attribute incremented, and then publish through your developer console in the market.

Upvotes: 0

Josnidhin
Josnidhin

Reputation: 12504

http://developer.android.com/guide/publishing/publishing.html

check out the publishing update section in the above web page

Upvotes: 1

Chris
Chris

Reputation: 10455

  • Increase the value of the android:versionCode attribute of the <manifest> element in your AndroidManifest.xml
  • Build, sign, zipalign the apk as you did originally
  • Go to http://market.android.com/publish/Home
  • Click on the app name
  • Click on [Upload Upgrade]
  • Select the app and upload as you did originally

Upvotes: 7

Related Questions