You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the v.11.5.6, for the <uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" tools:targetApi="s" /> permission, android:usesPermissionFlags="neverForLocation"
flag prevents scanner from finding beacons even though adding <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
permission to main project.
Removing android:usesPermissionFlags="neverForLocation" flag solves the problem.
It took me a full day to resolve the issue.
The text was updated successfully, but these errors were encountered:
Thats not a problem with the library itself but a environment configuration problem.
But we'll gonna add that into the docs so nobody suffers with that.
On the v.11.5.6, for the
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" tools:targetApi="s" />
permission,android:usesPermissionFlags="neverForLocation"
flag prevents scanner from finding beacons even though adding
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
permission to main project.
Removing
android:usesPermissionFlags="neverForLocation"
flag solves the problem.It took me a full day to resolve the issue.
The text was updated successfully, but these errors were encountered: