使用功能是否限制 App Store 下载

Does uses-feature limit App Store Downloads

我似乎可以在 google 上找到任何内容,但如果我将此设置添加到我的清单中

使用特征 android:name="android.hardware.bluetooth_le" android:required="true"

非蓝牙设备(例如低于 4.3 的任何设备)是否仍然能够从商店下载该应用程序? 问候

如果您设置 android:required="true",则没有该功能的设备将无法从 Play 商店查看或下载该应用程序。 如果您希望该应用可用于没有该 BLE 功能的设备,请使用 android:required="false" 声明该功能。在这种情况下,您必须手动检查该功能是否可用。

请查看http://developer.android.com/guide/topics/manifest/uses-feature-element.html#market-feature-filtering and https://developer.android.com/guide/topics/connectivity/bluetooth-le.html了解更多详情。