Search code examples
androidcordovaintelintel-xdk

Error when incrementing app version code using Intel XDK


When I increase the app version code to 1.1, I get an error:

An unexpected error occurred while attempting to build the application.

If I don't update the app version code, Google Play Store gives me an error:

You need to use a different version code for your APK because you already have one with version code 1

enter image description here

How to correctly update the app version code?


Solution

  • I'm not familiar with intel xdx, but the version code is usually a number like:

    versionCode: 11

    The versionName could be 1.1 in that case.

    So using 11 instead of 1.1 might help.