Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序支持 GPS。在代码中,我检查了 GPS 硬件的可用性。不幸的是,市场上没有 gps 的人无法安装我的应用程序。如何使用 ot GPS 可选,即使设备上没有 GPS,用户也可以安装它?
在清单中添加android:required="false"到您的权限
android:required="false"
例如
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
采用
在您的清单文件中。