Is Entitlements.plist required for distributions in Xcode 4?

Is Entitlements.plist required for distributions in Xcode? I had no problem creating ad-hoc distributions without it, but some documents and many posts still describe it as needed.

+6
source share
1 answer

According to Ole Begeman, you do not need Entitlements.plist for AdHoc Distribution:

There is a link to Technical Note TN2250 , which details:

Code Signing Rights

Prior to Xcode 4.x, it was necessary that the developer create the Signature file of rights code in the Application Bundle for special testing, which defines the "get-task-allow" right with the value "false" (not verified). However, with Xcode 4, which is no longer required since the application is distributed through the delayed signing of the application, the Archives panel in the Organizer. See Using assembly and archive. Xcode function for deferred code Signing for more information.

+5
source

Source: https://habr.com/ru/post/889909/


All Articles