繁体   English   中英

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

[英]App not showing in Play Store in some devices

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

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

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

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

**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" /> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM