We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No beacons are found in Andoid 11 smartphones...
I entered the new permissions arrived with the new version of android but nothing..
Someone can help? Does this lib working with android 11?
The text was updated successfully, but these errors were encountered:
With Android 10 and API29+ the plugin will need the following permissions:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
It was also need a service declaration:
<!-- Recommended for Android 9 (API level 28) and lower. --> <!-- Required for Android 10 (API level 29) and higher. --> <service android:name="org.altbeacon.beacon.service.BeaconService" android:foregroundServiceType="location"> </service>
as per https://developer.android.com/training/location/permissions
I would like to suggest that this change request is added as I am not in the position to do it.
Sorry, something went wrong.
No branches or pull requests
No beacons are found in Andoid 11 smartphones...
I entered the new permissions arrived with the new version of android but nothing..
Someone can help?
Does this lib working with android 11?
The text was updated successfully, but these errors were encountered: