background-geolocation-android
background-geolocation-android copied to clipboard
Fix ANDROID SDK 29 require ACCESS_BACKGROUND_LOCATION permission
To access location in the background in SDK 29, the app requires ACCESS_BACKGROUND_LOCATION permission
Not sure how to create a PR across submodules. This PR only includes the code change. The plugin.xml
also requires the following change (to add the permission to AndroidManifest)
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
Fixes mauron85/cordova-plugin-background-geolocation#688