mudin
mudin

Reputation: 2852

Play store is showing 0 supported devices with same code

I have tried to upload my app's new version (ex:v1.0.4) to play store and it is showing 0 supported devices.

For testing, I rollbacked my old version (ex: v1.0.2), changed only version code/name in gradle file and tried to upload the apk again. It is showing 0 supported devices too.

Few days ago, that version (v1.0.2) supported more than 3000 devices.

My question is why the play store is showing 2 different results for 2 exactly same code apks (only version code and name are different).

Is it because google policy changed or I updated my gradle and android studio?

Thank you in advance!

Upvotes: 5

Views: 2409

Answers (2)

Amarjit
Amarjit

Reputation: 4357

I know it is late to answer, I face the same problem. With setting all users-features as false, play store still shows zero devices supported.

Here is solution, hope will help someone

   <uses-feature
            android:glEsVersion="0x00020000"
            android:required="true" />

Also

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

Hope it help.

Upvotes: 1

Zal&#225;n Meggyesi
Zal&#225;n Meggyesi

Reputation: 654

It looks to be a display issue: if you check the device catalog, supported devices are displayed properly, and once rollout takes place, the "i" icon next to the APK also shows the correct figure.

Google has confirmed the issue in chat, so I'm positive a fix is in the pipe.

Upvotes: 7

Related Questions