27

In google play console app publish problem. First time that i'm using google play for publish my app. Also shows app status: production, update status: in review. But not find at google play. Now should i do ?

First time that i'm using google play for publish my app. Also shows app status: production, update status: in review. Now should i do ?

app status: production, update status: in review.

Nayemuzzaman
  • 469
  • 1
  • 4
  • 14

8 Answers8

5

step 1:

scroll down to release notes: .then add release as highlighted

enter image description here

step2:

add from library or upload a new one: enter image description here

now continue publishing your release.

1

When I got this error I had previously deleted ("Discard release") an .apk that had been rejected for having errors. I then tried to replace it with an uploaded .apk with the same build number.

The solution was to increase the build number (versionCode). Note that the version (versionName) can stay the same.

Owlvark
  • 1,763
  • 17
  • 28
0

It says that the app is in review. Once review will be complete it will say Reviewed. Then you will be able to find it on Google Play.

user14678216
  • 2,886
  • 2
  • 16
  • 37
0

I also received this error. First of all, I correctly set the time (my computer was not on time). Then, I built another version of the bundle and voila, no more error.

  • 1
    This does not really answer the question. If you have a different question, you can ask it by clicking [Ask Question](https://stackoverflow.com/questions/ask). To get notified when this question gets new answers, you can [follow this question](https://meta.stackexchange.com/q/345661). Once you have enough [reputation](https://stackoverflow.com/help/whats-reputation), you can also [add a bounty](https://stackoverflow.com/help/privileges/set-bounties) to draw more attention to this question. - [From Review](/review/late-answers/30180939) – Saeid Lotfi Oct 27 '21 at 08:19
0

When I encountered this issue ,I found out I was not Entering Notes for App Bundle in Console.

0

I uploaded the .aab first in production. Then I wanted to test the app and it gives an error. First you need to upload the app in test, then its works.

Werner
  • 11
  • 5
  • 2
    As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community May 20 '22 at 13:00
0

look into android/app/buildgradle be sure this line is release like this

buildTypes {
        release {
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.release
Rumit Patel
  • 8,830
  • 18
  • 51
  • 70
0

If you are using expo react native then you need to add

"versionCode": 1.1,

into

"android": {
"adaptiveIcon": {
        "foregroundImage": "./assets/adaptive-icon.png",
        "backgroundColor": "#FFFFFF"        
      },
      "versionCode": 1.1,
      "package": "com.ijazalise.physicsolevel"
    },
Rawr
  • 2,206
  • 3
  • 25
  • 53