应用程序在Play商店中不可见

时间:2013-08-11 06:52:45

标签: android google-play

我几天前发布了我的应用程序。在第一天,一切正常,但从那时起,无法在Play商店应用上搜索该应用。它仍然可以通过http://play.google.com/store进行搜索。可能是罪魁祸首,我该如何解决?

我尝试过:
- 删除Play商店应用的缓存
- 在具有不同Android版本的多个设备上试用

更多信息:
- Developer Console中的状态显示“已发布”
- 直接链接工作

在Play商店应用中找不到

enter image description here

2 个答案:

答案 0 :(得分:2)

原来Google的搜索索引存在问题。我将应用程序重命名为其他内容,等待几个小时,直到新名称被编入索引,并更改回原始名称。像魅力一样工作。

答案 1 :(得分:1)

如果您在设备上找不到的应用,则只是意味着Google Play会发现您的应用与您正在搜索的设备不兼容。

修改

你的清单缺少support-screens阻止。添加:

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

并查看更改后的supported device计数。