Questions tagged [ios-permissions]
150 questions
0
votes
0 answers
React native to ask access to ios photo library
I would like to ask the user to give access to the photo library, but only to let him give me access to all photos, not selected ones.
Is there a way to implement this?
I am using the requestPermissions from MediaLibrary
Link
Any help would be…

Tomer
- 1
- 2
0
votes
1 answer
How to use unsatisfiedReason and localNetworkDenied with Alamofire?
Since iOS 14 there is a Local Network Permission and Apple recommends to use waitsForConnectivity on the connection to wait for the user to answer the permission pop-up.
To check if a connection attempt is waiting for the permission Apple…

chamaeleon
- 3
- 4
0
votes
0 answers
react-native-permissions: does request() automatically get called in permission flow?
I'm reading the documentation for react-native-permissions and I'm looking at the flow chart in Understanding Permission Flow. In the iOS flow, it says that once you call check(), if the permissions is requestable, it returns RESULTS.DENIED. It then…

gkeenley
- 6,088
- 8
- 54
- 129
0
votes
2 answers
AppTrackingTransparency permission dialog doesn't show up
I'm asking for tracking-transparency permission using the permission_handler in my app:
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
Map statuses = await [
Permission.photosAddOnly,
…

genericUser
- 4,417
- 1
- 28
- 73
0
votes
0 answers
Why is my Flutter PageView resetting when new any permission is selected by a user (iOS)
My app asks permission to access the photo library, camera, microphone, and location on the CreatePostScreen(). Whenever a user selects any option for those permission prompts, the PageView resets and goes to the first tab for some reason. None of…

Globe
- 169
- 11
0
votes
0 answers
How to skip app asking permission when launched in iOS
I'm have an cross platform app developed on Unity and I want the app skip permission asking when app launched.
I did it on Android by adding "unityplayer.SkipPermissionsDialog" meta-data to your Android manifest. But I could not find any instruction…

Junioryg
- 1
0
votes
1 answer
Is it possible to Always Allow the permission for camera and microphone third-party Apps using Cordova in iOS?
I've created the VideoConferning App for Using Webrtc, and also made the app for using Cordova in ios, but the issue was when I opened the app, each time it triggers the permissions for the camera and microphone.
here are my…

maranR
- 363
- 8
0
votes
0 answers
Behaviour of "Ask next time or when I share" permission for iOS loaction service?
My app needs access to the user's location inside a WkWebview at 2 different points in the user's journey (one at the beginning and one at the end). When a user selects "Ask next time or when I share" for the first time in iOS's location permission…

Piyush Khanna
- 23
- 6
0
votes
0 answers
Camera access does not show up in app settings in IOS
I am writing an app using flutter. The app requires to access the camera in order to scan QR-code and take pictures using the camera in general. I am using permission handler to, well, handle the permissions. Everything works fine and the pop up…

anonon
- 31
- 1
0
votes
1 answer
Xamarin iOS Program: HealthKit User Permission Dialog not Shown
I follow the tutorial here (Code from Git Code repo here) for Xamarin building the first ios health-kit app but the permission dialog is not shown in the user's end. Both keywords NSHealthShareUsageDescription and NSHealthUpdateUsageDescription are…

universe123
- 103
- 5
0
votes
0 answers
Flutter: Get which type of location permission is currently enabled
Hey I am using the permission handler package in order to request and get the current status of my permissions.
I have the following three permissions
[Permission.location, Permission.locationWhenInUse, Permission.locationAlways]
Now I want to know…

Lucas Goldner
- 617
- 9
- 29
0
votes
1 answer
do i need inform or take permissions from users if i need to write or read from application app?
do i need inform or take permissions from users if i need to write or read from application app ?
i need to know Officially and legally if Do I have to ask the user to grant me permissions either by ios or android
Future get _localPath async…

Mohammed2 Hamdan2
- 41
- 3
0
votes
0 answers
Identify application restart by camera and audio permission change swift
I have a video calling application now issue is that if the user declines the permission and once the user grants the camera access permission then the iOS application restarts then how I can know the application restart due to permission change?
Is…

Chirag Shah
- 3,034
- 1
- 30
- 61
0
votes
0 answers
Best Practice way to handle locationAlways permission request in iOS
How are we supposed to handle, when a user denies the permission request for kCLAuthorizationStatusAuthorizedAlways ? As i understand it, we don't get a direct response to requestAlwaysAuthorization, but rather we have to register a callback for…

Lukas Kurz
- 85
- 9
0
votes
1 answer
React-Native Expo Location Getting iOS Permissions
I'm developing a react-native app with Expo, and using expo-location for getting a phone's location.
Here are all my dependencies, in case there are conflicts unknown to me:
Dependencies
In the current setup, I'm using a loading screen to request…

CodeCodeCode
- 1
- 1