Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App not visible on Play Store [closed]

I published my app a few days ago. On the first day, everything was normal, but since then, the app could not be searched on the Play Store app. It IS still searchable through http://play.google.com/store. What could be the culprit and how can I fix it?

What I have tried:
- Deleting Play Store app's cache
- Tried on multiple devices with different Android versions

More info:
- The STATUS in the Developer Console says "Published"
- Direct link works

Could not be found on Play Store app

enter image description here

like image 412
growic Avatar asked Oct 03 '22 06:10

growic


1 Answers

If you cannot find app searching on a device, then it simply means Google Play finds your app incompatible with the device you are searching for it on.

EDIT

Your manifest lacks support-screens block. Add:

<supports-screens
    android:anyDensity="true"
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:resizeable="true" />

and see what the supported device count will be after that change.

like image 52
Marcin Orlowski Avatar answered Oct 12 '22 11:10

Marcin Orlowski