react-native-permissions icon indicating copy to clipboard operation
react-native-permissions copied to clipboard

An unified permissions API for React Native on iOS, Android and Windows.

Results 27 react-native-permissions issues
Sort by recently updated
recently updated
newest added

### Bug summary Permissions are prompt only once on Android 12. The status of the permission is only `denied`, still the popup does not appear with `request` nor `requestMultiple`. Permission...

bug

# Summary Fix #509 ## Test Plan Tested in my app by calling the following and verifying that the permission prompt is displayed: ``` Permissions.check(PERMISSIONS.IOS.LOCAL_NETWORK_PRIVACY) Permissions.request(PERMISSIONS.IOS.LOCAL_NETWORK_PRIVACY) ``` ## Compatibility |...

# Summary * Closes https://github.com/zoontek/react-native-permissions/issues/490 * Fixes an issue on iOS where you could not ask for `LOCATION_ALWAYS` permission if you already had `LOCATION_WHEN_IN_USE` permission. * This only impacts the...

### Why it is needed? I have noticed the lack of this feature during [a discussion on react-native-image-crop-picker](https://github.com/ivpusic/react-native-image-crop-picker/issues/1569). When the app displays library photos for the user and allows him...

feature request

# Bug report If we have location when in use permission, requesting location always permission always returns denied, probably because of this line: https://github.com/react-native-community/react-native-permissions/blob/4017cbf0861b562bb48888f76cfa7c9a62c68ffc/ios/LocationAlways/RNPermissionHandlerLocationAlways.m#L38 Apple's documentation is pretty clear about...

Fund

Hi everyone 👋 @zoontek here, creator and maintainer of `react-native-{bootsplash / localize / permissions / bars / dev-menu}`. I'm opening this issue to prevent multiple ones from being created about...

pinned

Are there any future plans to include Google Fit and HealthKit permissions via this library? Would be awesome to handle all permissions through a single API.

help wanted
feature request

# Feature request Support for Local Network permission needed (iOS14) ## Why it is needed With iOS 14 user may disallow Local Network permission for mobile app, which will deny...

feature request
Fund

### Why it is needed? Most of the libraries now support the web and it helps with the react-native everywhere vision ### Possible implementation I can create a POC implementation...

feature request

### Bug summary Android 12 comes with approximate location option when asking for fine permission, this sets the coarse location permission flag. You can ask for only approximate location by...

bug