user4767117
user4767117

Reputation:

unable to publish updated Apk on Play Store

I changed android:versionCode="2" from android:versionCode="1" and also changed android:versionName="1.1" from android:versionName="1.0" but still it shows error.Version 1 is not served to any device configuration enter image description here

Upvotes: 2

Views: 645

Answers (2)

Vishal Patel
Vishal Patel

Reputation: 2970

There are few steps to follow when You want publish updated application

1. At Your System side(in mainfest.xml of your application)

for example

android:versionCode="1" to android:versionCode="2"

android:versionName="1.0" to android:versionName="1.1"

2. At playstore side

Unpublish your old version apk..

3.At playstore side

Now upload your new updated APK followed 1st step...at playstore

Hope it help for you...

Upvotes: 1

Mattia Maestrini
Mattia Maestrini

Reputation: 32790

You need to deactivate the APK with versionCode 1 (versionName 1.0) before publish the APK with versionCode 2 (versionName 1.1)

Upvotes: 3

Related Questions