How to fix APK error completely hidden?

Asked

Viewed 2,397 times

1

Whenever I will publish an App in the store this error appears:

APK completely hidden

Issue: This APK will not be aired to users as it is completely hidden by one or more Apks with version codes superior.

Resolution: Remove this APK from the version or review the version codes and the segmentation of the Apks included in it.

  • What is the versionCode and versionName is in the store and which one is trying to climb?

  • I believe they’re the same. I’m trying to climb a new version for the fifth time and the first and second one worked, from the third to the fifth this message appears. How the names should be?

  • So the version code should increase it one more! If it is 10 for example, the version that is in Google Play, the next one to go up should be the 11

  • So. the current version published in the store is 2, I have tried to publish version 3 and 4 and it appears the error that "You already have an APK with version 3 or 4 code" And when I try to send one that I haven’t tried it presents this topic error.

  • I JUST TRIED TO PUT VERSION 6 ON AND IT WORKED! THANK YOU VERY MUCH!!!

2 answers

1


As pointed out by Thiago Luiz Domacoski, to publish a new APK on Google Play, the value of the versionCode in your Gradle, must be higher than the value of the last published APK.

 defaultConfig {

    /* ... */

    versionCode 2 // <---- Número da versão do app
    versionName "nome da versao"

    /* ... */
}

To find out the value of the versionCode of the latest published version of an app:

  1. Open Google Play Developer Console
  2. Select an app
  3. Select Version Management in the side menu
  4. Click on Versions of Apps in the submenu
  5. In the information that appears look for APK version code. This is your last used versionCode, so the next version you publish for this app, should have a larger number than this.
  • So.. the current version is 2, I’m trying to upload version 3 and it says " Sending failed Use another version code for your APK. You already have an APK with version code 3." . This must happen because I already tried to send it again. As I had given error with the version 3 I gave up and went to the next one and the error persisted with the version 4 and now with the 5.

  • You could edit the question by adding the publication screen print?

  • I JUST TRIED TO PUT VERSION 6 ON AND IT WORKED! THANK YOU VERY MUCH!!!

  • Another point is that for some reason Play Console may not have put the previous version to be disabled, and then this message appears. When I put "Disable" the previous version, the error disappeared too

0

in my case I have changed/changed this versionCode, but keeps giving the same warning. So, now I’ve deleted the apks I’ve already gone up to see if that alert goes away.

  • Guys, I got it, that’s right! It has to be deleted/removed from previous apks in order to climb a new one.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.