Android Question Google: change to Android ACCESS_FINE_LOCATION permissions

Powie

Member
Licensed User
Longtime User
Today I recevied this E-Mail from Playstore.

What does it mean for B4A and GPS?



Hello Google Play Developer,

We're writing to let you know that the apps listed at the end of this email may be affected by an upcoming platform change.

Action required: If your app requires GPS hardware to operate properly, you will need to explicitly add the "android.hardware.location.gps" uses-feature to your manifest.

What’s changing

We’re making a change on October 15th, 2016 that will affect apps targeting API version 21 (Android 5.0, Lollipop) or higher that use ACCESS_FINE_LOCATION but don't explicitly have the "android.hardware.location.gps" uses-feature. Going forward, these apps will be available to install on devices that don't have GPS hardware. In most cases this won't be an issue since Wi-Fi and Cell-ID based location provides high enough fidelity for the typical operation of these apps. However, any apps that require GPS hardware, such as GPS navigators, should explicitly add the "android.hardware.location.gps" uses-feature to their manifest.

If your app requires GPS to function properly and you do not include android.hardware.location.gps in your manifest declaration, your users may have a poor app experience.

Also, if you’re using the fused location provider and wish to receive the most accurate location samples from GPS (i.e. with PRIORITY_HIGH_ACCURACY), you must include the "android.hardware.location.gps" feature in your app’s manifest to ensure that Google Play only distributes your app to devices with GPS sensors.

You can read more about this change in the Android Developers Help Center.

Regards,

The Google Play Team

Up to 20 affected app(s) and version(s) are listed below. If you have more than 20 apps in your catalogue, make sure to check each app for this issue.
 

lemonisdead

Well-Known Member
Licensed User
Longtime User
Hello,
It means what it is written : just add the required directive in the Manifest and you are done (or your app would be distributed to devices without GPS too).
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
If you are using the GPS library then you need to add this line to the manifest editor:
B4X:
AddManifestText(<uses-feature android:name="android.hardware.location.gps"/>)

If you are using FusedLocationProvider library and you don't want that your app will be installed on devices without GPS then you should also add that line.
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…