Play store is showing 0 supported devices with same code

后端 未结 2 411
庸人自扰
庸人自扰 2021-01-06 00:22

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),

相关标签:
2条回答
  • 2021-01-06 00:54

    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.

    0 讨论(0)
  • 2021-01-06 01:00

    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.

    0 讨论(0)
提交回复
热议问题