如何使gps权限可选?

时间:2012-10-21 19:52:51

标签: android permissions

我的应用有gps支持。 在代码中,我检查了GPS硬件的可用性。 不幸的是,市场上没有gps的人无法安装我的应用。 如何使用GPS可选,这样即使设备上没有GPS,用户也可以安装它?

2 个答案:

答案 0 :(得分:4)

android:required="false"添加到清单

中的权限中

e.g。

<uses-feature android:name="android.hardware.location.gps" android:required="false" />

答案 1 :(得分:1)

使用

<uses-feature
    android:name="android.hardware.location.gps"
    android:required="false" />

在您的清单文件中。