应用程式未在某些装置的Play商店中显示

时间:2018-11-13 19:22:40

标签: java android gradle google-play

在Play商店上发布我的应用后,我注意到无法在某些设备和台式机上进行搜索。它告诉我该应用程序不兼容。

虽然,分钟。我使用的API是API 16(Android 4.1),我正在运行Android 4.4对其进行测试的设备。 但是,如果我通过Android Studio中的USB安装该应用,那么该应用在这些设备上的运行情况就很好。 (我还发布了其他几个应用程序,它们确实出现在搜索结果中!)

我还检查了清单和应用程序的build.gradle,但将其与其他应用程序的文件进行比较后,似乎不是造成问题的原因...

这是我的清单文件:https://hastebin.com/jifamoluli.xml

1 个答案:

答案 0 :(得分:-2)

**Please have a look of following i think it will help you.**

First think that could be happen if you provide the minimum api level support it will display only in respective api level of phones but as you mension you have provided api 16 please open your manifest file and check if you have provided the screen support or not if please add below code. 
<supports-screens
 android:smallScreens="true"
 android:normalScreens="true"
 android:largeScreens="true"
 android:xlargeScreens="true" 
 android:anyDensity="true" 
 android:resizeable="true" /> 
相关问题