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
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With