I\'m getting this error when uploading my Phonegap app to the Google Play Developer Console:
Your APK\'s version code needs to be higher than 2. <
Your APK\'s version code needs to be higher than 2.
I found that if you are using Android Studio, you need to update the version code in the build.gradle file. For example:
build.gradle
defaultConfig { applicationId "app.myapp" minSdkVersion 14 targetSdkVersion 20 versionCode 2 versionName "1.0.0" }
...