Do I need SUEnableDownloaderService for a sandboxed app? #2270
-
I have a sandboxed app. I released a version 0.1 without having the key I recently completed a version 0.3 of my app. When I run version 0.2 of my app, check for updates, and click the Install Update button, the update downloads, but when it starts extracting the download, an alert with the following message appears:
This is the same error I had when trying to update from version 0.1 to version 0.2 because of the missing The documentation for the Do I have to add the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
More detailed information on the error you hit is outputted in the console logs. It may even tell you why things are failing. "Outgoing Connections" is the same as the Also be sure to read the sandboxing guide, particularly the section about the "Installer Connection & Status Services" -- it's relevant even if you don't use the XPC Services and has steps for not doing so. |
Beta Was this translation helpful? Give feedback.
More detailed information on the error you hit is outputted in the console logs. It may even tell you why things are failing.
"Outgoing Connections" is the same as the
com.apple.security.network.client
key I believe. You can verify the generated entitlements of your app usingcodesign -d --entitlements :- "Payload/YourApp.app"
Also be sure to read the sandboxing guide, particularly the section about the "Installer Connection & Status Services" -- it's relevant even if you don't use the XPC Services and has steps for not doing so.