Error while implementing Sandbox: “deny file-read-metadata /Library”

南楼画角 提交于 2019-12-20 19:54:00

问题


I realize that I'm a bit late to the game here in getting sandbox-ready, but so it goes.

I'm developing for OS X 10.9. The app displays Calendar event data, but does not allow editing, so I have enabled the Calendars capability.

The app works great with sandboxing enabled when I run it from Xcode, but when I export it signed with Developer ID, the app runs, but can't access the Calendar data. What's more, the system never asks me to allow the app to access Calendar data.

When I run the app, it launches, but doesn't show any data. In Console, sandboxd throws a bunch of errors that look like this:

sandboxd: ([54]) appleeventsd(54) deny file-read-metadata /Library

and

sandboxd: ([54]) appleeventsd(54) deny mach-lookup com.apple.ocspd

I've checked the app's entitlements with codesign -d --entitlements, and it confirms that it's Sandboxed and has calendar entitlements. However, when I check in-app to see if it has permission to access [EKEventStore authorizationStatusForEntityType:EKEntityTypeEvent], it, unsurprisingly given it has never asked, returns EKAuthorizationStatusNotDetermined.

I feel like I am missing something pretty basic here regarding entitlements, code signing, or deployment, but I'm at a loss to find out what it is. And so I throw myself on your collective mercy and wisdom.

来源:https://stackoverflow.com/questions/20723074/error-while-implementing-sandbox-deny-file-read-metadata-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!