-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is very likely a sandbox configuration issue and a difference between your debug / release-archived builds. As you showed you are getting The guide mentions this. I would check if you have any custom (re-)signing anywhere in your project. Just using Xcode's Archiving should preserve entitlements correctly.
|
Beta Was this translation helpful? Give feedback.
This is very likely a sandbox configuration issue and a difference between your debug / release-archived builds.
As you showed you are getting
deny(1) mach-lookup com.xxx.aaa-spks
. This may mean in your release build the entitlements for looking upcom.xxx.aaa-spks
are stripped. You can trycodesign -d --entitlements - --xml /Applications/uhomeaaa.app/Contents/MacOS/uhomeaaa
on your archived build to view its entitlements and see if it's still present.The guide mentions this. I would check if you have any custom (re-)signing anywhere in your project. Just using Xcode's Archiving should preserve entitlements correctly.