Reputation:
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
Upvotes: 2
Views: 645
Reputation: 2970
There are few steps to follow when You want publish updated application
for example
android:versionCode="1" to android:versionCode="2"
android:versionName="1.0" to android:versionName="1.1"
Unpublish your old version apk..
Now upload your new updated APK followed 1st step...at playstore
Hope it help for you...
Upvotes: 1
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