Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone build configurations - Entitlements.plist

Is it possible to have two Entitlements.plist files so that the one which the debugger can attach is associated with the debug build configuration whilst the one without would be associated with the release configuration?

like image 263
acheo Avatar asked Sep 18 '25 20:09

acheo


1 Answers

Sure. In the build settings, you can specify a different Entitlements plist file for specific build configurations. Just set the appropriate one for Debug and a different one for release/distribution etc.

The settings is called "Code Signing Entitlements" or "CODE_SIGN_ENTITLEMENTS" depending on whether you have show names or titles set.

Just specify the name of the Entitlements.plist file you wish to use, eg:

Entitlements-Debug.plist

or

Entitlements-Distribution.plist
like image 200
Jasarien Avatar answered Sep 20 '25 21:09

Jasarien