21

I've just updated my React-Native app and got this error message at Google Play Console when I tried to make another internal test version.

Unknown validation VALIDATE_APP_MESSAGE_NO_APKS

The latest version was uploaded with no trouble and there were only few changes in this version. Nothing to doubt. Sorry for such little information.

Has anyone got in trouble with this error message when trying to upload the newly updated app on Google Play Console?

bad_coder
  • 11,289
  • 20
  • 44
  • 72
suyeon woo
  • 211
  • 3
  • 5
  • Have you tried to reupload apk/aab. I just solved my problem with creating new scenario. It seems that my file is null – Nanda Z Oct 18 '20 at 03:35
  • Yes. I'd removed 'android > .gradle' directory and rebuilt it and created aab file for like several times but still seeing the same error message :( – suyeon woo Oct 18 '20 at 04:18
  • Oh, I figured it out. I had made several value-langs direcories to set multiligual app titles under the 'app>src>main>res' directory. Now I removed them and created new aab file and the error has gone. I think there should be only one values directory or something. But quite not sure. Thank you for your comment. :) @NandaZ – suyeon woo Oct 18 '20 at 04:46

7 Answers7

34

I had a similar kind of issue. what I got was
"Unknown validation VALIDATE_APP_MESSAGE_MISSING_COUNTRY_PRICES"

I fixed it by editing the App pricing for the app. Reduced the price -> saved it and then changed it back to the old price. It was some weird issue with the playstore!

Kasun Thilina
  • 1,523
  • 2
  • 14
  • 20
12

Just faced this exact issue. If you have a pricing template setup, follow Dipu's solution. If not, just go to App Pricing. Then, click on Edit Price then click on Update Exchange Rates. Then Save. Now go back to releases and click on review and release. That's it! The problem should be solved.

sambam
  • 121
  • 1
  • 8
6

Some countries has been added or removed or their policies have been changed for pricing that is why the error shown.

Just edit price and click on "update exchange rates" and apply changes

Khalid Lakhani
  • 179
  • 2
  • 10
5

Got same problem...here is how i fixed it...

Just go to the pricing template => go in your linked template to your game/app => click on edit price => click on update exchange rate

After this that error message will not appear...

If error still appear change price a little click on update exchange rate and save...

This worked for me.

Dipu
  • 51
  • 1
  • 1
2

I simply temporarily changed the pricing template to a new one: Monetize > Products > App pricing > Change pricing template

And it worked for me.

ViH
  • 419
  • 2
  • 14
0

I had the "Unknown validation VALIDATE_APP_MESSAGE_MISSING_COUNTRY_PRICES" problem.

I fixed it by editing the App pricing and just clicking the "Update exchange" button. After that, just save and try again.

MarcioRR
  • 11
  • 2
-1

Change SDK Version as per below in build.gradle(app)

compileSdkVersion 29
targetSdkVersion 29

And make again with signed APK and upload on Playstore and It's worked for me.

Pratik Dodiya
  • 2,337
  • 1
  • 19
  • 12