Reputation: 13180
I have some questions regarding entitlement file:
What is the use of entitlements file.
What happens if I don't add it.
What is the difference between myApp.entitlements and entitlements.plist?
Upvotes: 33
Views: 29402
Reputation: 1140
myApp.entitlements
is Xcode generated plist when you enable capabilities (e.g push notification) for that particular target.
Upvotes: 1
Reputation: 830
Entitlements are announcements that “I am gonna use this feature like APPLE PAY” and provision profile will say, “Yes dear you can use Apple Pay Feature”.
Entitlements are part of the code-signed app.
Upvotes: 6
Reputation: 1292
Upvotes: 32