excludes app from Nexus 5x in Google Play

后端 未结 1 925
甜味超标
甜味超标 2021-02-19 12:11

The app I am developing now is not visible in Google Play from Nexus 5x. As it does not support tablets, there is a section in the manif

相关标签:
1条回答
  • 2021-02-19 12:46

    According to Google the Nexus 5X has a xxhdpi screen but with a density of 2,6. So 2,6 * 160 (mdpi) = 416, but according to Android developers' site the accepted value is 420. So just add <screen android:screenSize="normal" android:screenDensity="420" />

    UPDATE: The new 5" Google Pixel has the same density so the same rule applies for it as well.

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