Reputation: 31
I am developing a macOS application using AppKit. After archiving the app and attempting to upload it to the App Store, I encounter the following error:
The following issues occurred while distributing your application.
Validation failed
App sandbox not enabled. The following executables must include the "com.apple.security.app-sandbox" entitlement with a Boolean value of true in the entitlements property.
However, I have already enabled App Sandbox in my project settings, and I have verified my entitlements file.
com.apple.security.app-sandbox
is set to true
in my .entitlements
file.codesign
and codesign -d --entitlements :-
commands to inspect the app binary and confirm the entitlements.What could be causing this issue despite the entitlements being properly configured? Is there a way to debug further why App Store Connect does not recognize the sandbox entitlement?
Upvotes: -1
Views: 32