Triggering auto update permission dialog #2343
-
Hi- Hoping someone can help. I'm working with a sandboxed app on Monterey, and the auto update permission dialog is not being presented on 2nd run as the documentation says. Are there known issues which might prevent it from being presented? How do you reset to trigger the auto update permission dialog subsequently? I've tried trashing the app preferences plist or app container folder with no success. I've followed the documentation carefully, and everything else seems to work -- checking for updates manually, etc. Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There aren't any known issues.
You can't modify the files on disk as they may persist in memory in some system daemons. You need to manipulate defaults using the Check your app's defaults with Specifically for this question you are interested in
You can use The permission dialog won't show up if you set |
Beta Was this translation helpful? Give feedback.
There aren't any known issues.
You can't modify the files on disk as they may persist in memory in some system daemons. You need to manipulate defaults using the
defaults
command.Check your app's defaults with
defaults read my-app-bundle-id
Specifically for this question you are interested in
You can use
defaults delete my-app-bundle-id SUEnableAutomaticChecks
e.g. to remove that key from the defaults.The permission dia…