Questions tagged [ios-permissions]
150 questions
3
votes
2 answers
ios - Ask for multiple permissions
My application ask for location and notification permissions.
When user launch the app for first time the location request displays and after notification request displays.
Is there any way to request this better? Maybe an a list like in Android or…

Ricardo
- 7,921
- 14
- 64
- 111
2
votes
1 answer
React Native - How to request App Tracking Transparency permissions on iOS?
The solution mentioned here talks about how to set this up with the ATTrackingManager class, however, that is not exposed directly to React Native.
Using the react-native-tracking-transparency package is causing an issue for me at build…

Shep Sims
- 698
- 9
- 27
2
votes
1 answer
'react-native-image-picker' allowing to choose images even after the Photo Library permission is declined
When "Photo Library" permission prompted & declined.
Still able to open library & choose images in iOS.
tested on iOS version: 15.5
dependencies used:
"react-native-image-picker": "^4.8.3"
Here is my code.
import { launchImageLibrary } from…

AbhinayMe
- 2,399
- 1
- 20
- 21
2
votes
0 answers
flutter) All photos are visible even when given limited permissions
I am using the file_picker library.
when an iOS user is requested for photo permission, even though certain photos are selected by pressing “Select Photos...”, all images are displayed so that all images can be selected.
if…

Queen Ellery
- 481
- 1
- 6
- 11
2
votes
0 answers
The ordering of the permission buttons is not intuitive on iOS
I've built an app that needs permissions from the user. The permission to access the current location and the permission to send the user push notifications. It works well, but the ordering of the permission buttons is very confusing for our users.…

DarkMath
- 1,089
- 2
- 15
- 29
2
votes
0 answers
Reenabling PWA camera access in iOS
I'm developing a PWA where the user can scan a QR code (I'm using zxing-js). On iOS In the safari it behaves as expected: If I allow camera access when prompted, it will open camera preview and allow me to scan code. If I deny access, it won't work,…

Philip
- 319
- 5
- 13
2
votes
0 answers
How to change the phone number format of call permission popup Swift
I am making a call to a number and it is working fine. Is there a way to change the number format of the permission asking popup in swift ?
Here is my code:
if let url = URL(string: "tel://\("
8680047015 ")"),
…

Varun P V
- 1,092
- 1
- 12
- 30
2
votes
0 answers
Swift Persistant Permission Ask
I am creating an app which requires the user to allow the app to capture the screen.
I have implemented the code using ReplayKit2.
The code works great except it asks for the permission:
Allow screen capture in APP_NAME?
This application will…

Rahul Holani
- 91
- 8
2
votes
1 answer
Flutter: Permission_handler: iOS: Camera permission request not working AFTER first successfully denied
I'm sure this is a silly error on my behalf.
Using Permission_handler to request camera permissions on iOS.
On first attempt the dialog shows requesting permission and successfully approves or denies. However, if I deny the request first and try…

Maksym Moros
- 499
- 7
- 21
2
votes
2 answers
iOS flutter app don't ask for permissions and returns permission status unknown
I am using a permission_handler 4.4.0(latest update) plugin to handle permissions on mobile devices which works perfectly on android devices but when i am trying to ask for permissions on iOS it doesn't show permission pop on device and returns the…

Code Runner
- 868
- 16
- 27
2
votes
0 answers
What permission for WKWebView is necessary for both video playback and accelerometer in native Swift app?
I’m converting an app that is largely based on webviews to WKWebView. At first, I was prevented from accessing the accelerometer because of CORS cross domain policy issues. When I solved that, the video that would play without a problem, now no…

Edan
- 167
- 14
2
votes
2 answers
iOS Permission - Ideal Microphone Permission Dialog Text
I have a chat app, and that has an upload function in which the user can upload photos and videos from the gallery or capture one. On iOS, to record video, one needs microphone permission separately (why? - isn't it obvious?). Now whenever I'm…

Divyansh Goenka
- 997
- 2
- 12
- 35
2
votes
0 answers
Xamarin IOS permission dialog behind splash screen
I have an Xamarin IOS project and I would like to create local notifications. For that I have to ask the user for permission. I have this code in the AppDelegate:
UNUserNotificationCenter.Current.RequestAuthorization(UNAuthorizationOptions.Alert,…

NPadrutt
- 3,619
- 5
- 24
- 60
2
votes
1 answer
Simplify location permission prompts in iOS 11
My app needs the 'always' location permission. Apple complicated location permission options if apps ask for 'always' directly, so I started asking for 'while using' and then 'always'. This gives the user a first dialog, for 'while using', with…

Crag
- 1,723
- 17
- 35
2
votes
4 answers
Show permissions dialog again in iOS
I'm working on an iOs app written in Swift with a Camera view controller. The first time I launched this view controller, the permission dialog was shown and I allowed the access to the camera and to the photo library. However, I noticed an issue…

fraxool
- 3,199
- 4
- 31
- 57