Entitlements confer specific capabilities or security permissions to your app.
Questions tagged [entitlements]
418 questions
6
votes
1 answer
Sandboxing an objective-c app embedding applescript
I would like to sandbox an app which uses applescript to contact safari to get the list of the tabs. Then I get back those datas in an objective c trough NSAppleEventDescriptor.
I've already added the…

Hugo
- 856
- 1
- 10
- 30
6
votes
1 answer
Turning Entitlements on in Xcode Prevents Bare Bones App From Launching
I created a basic application in Xcode 4.2. Very simple application, I have not changed a single thing. Push run, and you get the standard base application window. If I turn entitlements on for my target and hit run, I don't get any debugger…

David
- 1,674
- 1
- 21
- 35
6
votes
2 answers
iOS: How Do You Implement Critical Alerts for Your App When You Don't Have an Entitlements File?
What do you do when you don't have an entitlements file already?

MobileDev99
- 81
- 1
- 7
6
votes
2 answers
Provisioning profile doesn't include the com.apple.developer.pushkit.unrestricted-VOIP entitlement
In XCode project, I have added entitlements file. Now if i am adding any value inside that file like.
com.apple.developer.pushkit.unrestricted-voip Bool Yes.
It gives error while running.
Provisioning profile "Development" doesn't include the…

Ujesh
- 1,698
- 2
- 23
- 35
6
votes
1 answer
macOS Entitlements audio-input vs. microphone
For the macOS sandbox there are two entitlement keys:
com.apple.security.device.audio-input
com.apple.security.device.microphone
I tested both and both allow microphone input.
What is the difference between them?

Hyndrix
- 4,282
- 7
- 41
- 82
6
votes
1 answer
Resigning appstore exported IPA's with development certificate
Question
Is it possible to resign/provision IPA's exported for the AppStore with a development certificate and profile?
I can do the actual resign and upon manual verification things seem fine, however any application I try this on crashes on…

dzan
- 425
- 3
- 14
6
votes
1 answer
Edit app.entitlements file during build phase
I have several target in my Xcode project each of them having an associated domain but a different one.
I'd like to have the same entitlements file for all my target and having a script with PListBuddy to change the value the domain.
I already have…

CedricSoubrie
- 6,657
- 2
- 39
- 44
6
votes
2 answers
Missing HealthKit Entitlement
I am trying to integrate HealthKit with an app I'm building, and I seem to have successfully added the entitlement for it. I've created and downloaded a provisioning profile with the appropriate app ID, and the HealthKit toggle in the Xcode…

123
- 8,733
- 14
- 57
- 99
6
votes
0 answers
Apple Pay missing Entitlement warning
Have you ever received an email from Apple after submission like this?
The strangest thing is that I'm not using Apple Pay at all. Where should I look?
Dear developer,
We have discovered one or more issues with your recent delivery for “".…

betzerra
- 839
- 1
- 8
- 17
6
votes
1 answer
Lock macbook screen from a sandboxed app
I'm building a mac app that I want to distribute in the mac app store. I need this app to have a lock screen feature.
I have 2 different approaches working, the problem is, as soon as I enable sandboxing for the app (which is required for the mac…

saintmac
- 590
- 4
- 15
6
votes
1 answer
Extracting entitlements from Xcode capabilities
I need to obtain an entitlement file generated by Xcode automatically when you're building a project.
Normally (even when you don't have any explicit capabilities selected), you can find one at $DERIVED_FILES_DIR/$PRODUCT_NAME.xcent, it contains…

Sash Zats
- 5,376
- 2
- 28
- 42
6
votes
1 answer
Passes not enabled in provisioning profile
Here were my steps.
I created a passtype ID using pass.com.domain.AppName style.
I created an App ID for com.domain.AppName.
I enabled Passes in the App ID.
I created a new provisioning profile with the app id created earlier.
I opened my project in…

user717452
- 33
- 14
- 73
- 149
6
votes
1 answer
iOS How to use Entitlement.plist to specify property of my app
I'm using Jailbreak + Appsync + iOS5.0.1 device (without a developer license but with some tricks I can run my app on the device)
Now I want to use a private API launchApplicationWithIdentifier:suspended:. So I need to…

wyp
- 869
- 3
- 11
- 23
5
votes
1 answer
How to set temporary entitlements for IOKit properties?
I'm using sandboxing in for my Mac app. I need to set a property to IOKit like so,
IORegistryEntrySetCFProperty(reg, CFSTR("IORequestIdle"), kCFBooleanTrue);
Because of app sandboxing, the system will not allow me to do it. If I turn off app…

David
- 14,205
- 20
- 97
- 144
5
votes
0 answers
MacOS internal sandbox error for
I'm building a MacOS app that lets users edit a file. To access a file, I use a security scoped bookmark like so:
do {
self.securityScopedBookmark = try asset?.url.bookmarkData(options: .withSecurityScope, includingResourceValuesForKeys:…

user339946
- 5,961
- 9
- 52
- 97