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
{{ message }}
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
to my AndroidManifest.xml file, the dialog would show up. I didn't see that mentioned in the documentation. This was on a device running Android 6.0.1.
The text was updated successfully, but these errors were encountered:
Yes, here too. But I'm getting an exception when the device location service is disabled, the app location permission is disabled, and there is no permission request in the AndroidManifest.xml file. On the call to
final PermissionStatus permissionRequestResult = await LocationPermissions()
.requestPermissions(permissionLevel: LocationPermissionLevel.locationWhenInUse);
The docs should call out the need for the AndroidManifest.xml entry explicitly.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Initially when my app called
LocationPermissions().requestPermissions(
permissionLevel: LocationPermissionLevel.locationWhenInUse);
No dialog would get displayed to allow the user to grant or deny the permission. But after adding
to my AndroidManifest.xml file, the dialog would show up. I didn't see that mentioned in the documentation. This was on a device running Android 6.0.1.
The text was updated successfully, but these errors were encountered: