OS X app update issue with Sparkle under Mavericks and XCode 5

亡梦爱人 提交于 2019-12-04 09:29:21

I finally found the solution thanks to this post.

The problem comes from the fact that Mavericks has changed the way apps are signed. Every framework embedded in an app should be signed as well now.

To do so, I just added a "Run Script" Build Phase with those lines:

LOCATION="${BUILT_PRODUCTS_DIR}"/"${FRAMEWORKS_FOLDER_PATH}"
IDENTITY="Developer ID"
codesign --verbose --force --sign "$IDENTITY" "$LOCATION/Sparkle.framework"
codesign --verbose --force --sign "$IDENTITY" "$LOCATION/../XPCServices/com.andymatuschak.Sparkle.SandboxService.xpc"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!