android - While uploading APK getting error for version code -
my old code was...
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.webservice" android:versioncode="1" android:versionname="1.0" >
and change to....
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.webservice" android:versioncode="2" android:versionname="2.2" >
but still getting same error...
you have set build.gradle file (app module)
android { ... defaultconfig { ... versioncode 2 versionname "2.2" ... } ... }
Comments
Post a Comment