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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -