Search code examples
androidapk

APK with same versionName but different versionCode


Will the users get an update if I upload an APK with same versionName but different versionCode?


Solution

  • The versionName is just something displayed to the user, from Google and Android perspective this field is simply ignored. The only relevant field is versionCode.

    Therefore yes, users will get that update if only versionCode has changed.