对于最近的Google Play商店更改会影响使用ACCESS_FINE_LOCATION的API版本21(Android 5.0,Lollipop)或更高版本的应用,但不会明确拥有" android.hardware.location.gps&# 34;使用特征。
给出了本机应用程序的解决方案:
http://i.stack.imgur.com/Z4Sna.png
但是给定的解决方案适用于Native应用程序。当我使用Phonegap构建应用程序时,我需要混合应用程序的解决方案。我可以在配置文件中进行哪些更改?
答案 0 :(得分:0)
尝试使用自定义配置。这是链接。
https://github.com/dpa99c/cordova-custom-config
添加插件,然后复制并粘贴图片中的代码。
然后,它会像是,
<platform name="android">
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.hardware.location.gps" />
</config-file>
</platform>