Questions tagged [ios-permissions]
150 questions
12
votes
2 answers
iOS permission Alerts - removing or suppressing
I have a simple app running on ios simulator which will (at some point in the app), prompt the user to authorize the following:
Location setting
Address contact book
Pictures/Albums
Because I am doing automation testing on the iOS simulator…

Just a coder
- 15,480
- 16
- 85
- 138
10
votes
1 answer
Unable to run ios app on iOS 14 with flutter
I have just installed iOS 14 beta and updated Xcode to latest Version 12 beta 3.
I get an error like *Unable to locate DeviceSupport directory with suffix 'DeveloperDiskImage.dmg'. This probably means you don't have Xcode installed, you will need…

Sulfy
- 239
- 4
- 17
9
votes
0 answers
How to store camera permission in ios PWA?
I have created an application using angular PWA and it has a barcode scan functionality. It's working fine in ios but the problem is that every time use comes on this page it's asking for camera permission each time even if the user gave it once,…

Sanket Vagadiya
- 91
- 5
9
votes
1 answer
iOS location permission after app reinstall
I’m using Crashlytics for internal application tests and noticed one interesting thing. I’m using geolocation in my app and asking for permissions from a user. When customer install app for first time he sees default Apple’s geolocation permissions…

SIlvester
- 760
- 5
- 13
7
votes
1 answer
In Swift 4.1 how do you request write-only permission for the photo library?
I have my app requesting permission to add to the photo library but I don't need read access. I see that there is supposed to be an option for this but I can't find how to ask for this access specifically.
I am doing…

William Prevett
- 179
- 8
6
votes
2 answers
Can we read Wireless Data permissions on iOS?
If internet is not reachable, is it possible to programmatically distinguish between the following permission cases?
A case where user has denied permissions to use Data for the app.
A case where user has granted permissions to use Data, but phone…

Cœur
- 37,241
- 25
- 195
- 267
6
votes
3 answers
iOS simulator permission denied and not showing permission alert dialog
I'm working on iOS simulator and am facing issues for requesting permissions.
My app was working properly and it could access to photo library, camera and location service. But after installing new XCode (8.1), I run the app on simulator, the app is…

Capella
- 881
- 3
- 19
- 32
6
votes
2 answers
UIImagePickerController not asking for permissions on iOS 9
I have an iOS app where I present an image picker the
self.picker = [[UIImagePickerController alloc] init];
self.picker.delegate = self;
self.picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
self.popover = [[UIPopoverController…

nitrogenhurricane
- 201
- 4
- 15
5
votes
2 answers
Xamarin.iOS app asking Local Network permission in iOS 14.0
I have Xamarin.iOS app in production which is asking Local Network permission on launch on iOS 14 devices. App is not using any Bonjour service nor using anything specific to local network. App has various nuget packages including…

Gopal
- 1,734
- 1
- 14
- 34
5
votes
5 answers
How to add camera permissions into flutter project?
I want to open the camera by clicking a button but cannot add the camera and gallery permissions in the iOS package.
I have those keys:
NSPhotoLibraryUsageDescription
NSCameraUsageDescription
NSMicrophoneUsageDescription
And I don't know where I…

Abdurrahman Anas
- 665
- 2
- 9
- 21
5
votes
1 answer
App crash even after adding NSMicrophoneUsageDescription in info.plist file swift iOS
The info.plist file contains the following lines of code:
NSMicrophoneUsageDescription
The microphone permission is needed to to receive voice commands.
Still getting the following error:
This app has crashed because it…

as diu
- 1,010
- 15
- 31
5
votes
2 answers
change VPN configuration permission modal alert iOS
I've created app that connects iPhone to VPN(IKEv2) server. When I'm trying to connect to VPN first time it requires user permission in modal alert. Is there any way to change text of this modal alert? Didn't find any code in swift doing so.…

えるまる
- 2,409
- 3
- 24
- 44
5
votes
1 answer
Cordova geolocation, wait for user permissions
I have a Cordova app and the first thing it does is check the users location when the app is started. The issue is that if this is the first time the user is starting the app (on iOS), the geolocation plugin does not wait for the user to say yes or…

Aaron Fisher
- 645
- 3
- 8
- 23
5
votes
1 answer
iOS 8 & Cordova: App requests push notification permissions immediately on first launch
Update: Still getting this problem in the launched / GM version of iOS 8.
My Cordova app (version 3.5.0-0.2.7), in iOS 7, requests push permissions from the user when I try to register the device.
Now, in iOS 8 (beta 5, with Xcode beta 7), it…

brianglick
- 61
- 5
5
votes
1 answer
iOS push notifications: App not asking for permissions
I am trying to enable push notifications on my existing iOS app. I have gone through all the steps mentioned on this webpage:
http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1
Everything on the server side…

Rameez Hussain
- 6,414
- 10
- 56
- 85