1

我们即将在 Google Play 上发布应用程序。根据我们第一次的合同义务,我们只能将其出售给基于特定处理器的新设备。因此,我们需要排除除几个设备之外的所有设备。

当然,我们在应用程序中检查了芯片,但它相当大(大约 200 MB),所以用户不会因为知道他们不能玩而高兴地下载它。

那么,在下载之前进行检查的最佳方法是什么?Google Play 上是否有任何类型的“包含”列表?

谢谢!

4

2 回答 2

2

您可以在开发人员仪表板中指定设备。上传应用程序后,google play 将根据您的应用程序清单过滤设备。您还可以从支持的设备列表中排除设备。检查屏幕截图。单击Show devices将带您进入设备可用性屏幕。


在此处输入图像描述

在此处输入图像描述

于 2012-12-03T11:46:48.333 回答
0

Your app can define required features with the

<uses-feature android:name="..." android:required="true" />

But this is not possible for cpu. You have the possibility to exclude certain devices in the app store, I think this is your best shot, even though I guess this means you will have to exclude most devices.

于 2012-12-03T11:45:47.247 回答