-1

對於最近的Google Play商店更改會影響使用ACCESS_FINE_LOCATION但未明確擁有「android.hardware.location.gps」使用功能的API版本21(Android 5.0,Lollipop)或更高版本的應用。我可以在配置文件中設置GPS配置的更改嗎?

由於是本機應用程序的解決方案:
http://i.stack.imgur.com/Z4Sna.png 但給出的解決方案是對本地應用。我在使用Phonegap構建應用程序時需要混合應用程序的解決方案。我可以在配置文件中做什麼改變?

回答

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> 
相關問題