Post

Replies

Boosts

Views

Activity

Reply to “App” is damaged and can’t be opened. You should move it to the Bin." When updating application
@DTS Engineer Thanks a lot, I don't have any attributes on newly downloaded application. I set up my NSUpdateSecurePolicy like that <key>NSUpdateSecurityPolicy</key> <dict> <key>AllowPackages</key> <array> <string>TEAMID</string> </array> <key>AllowProcesses</key> <dict> <key>TEAMID</key> <dict> <key></key> <array> <string>com.firm.updaterid</string> </array> </dict> </dict> </dict>
Jul ’24
Reply to NSUpdateSecurityPolicy don't work or how to request App Managment permission?
My problem was because of I badly defined NSUpdateSecirityPolicy , turns out I did not specifed key in dictionary because of picture on https://developer.apple.com/documentation/bundleresources/information_property_list/nsupdatesecuritypolicy I thought that dictionary must not have a key NSUpdateSecurityPolicy should look like this <key>NSUpdateSecurityPolicy</key> <dict> <key>AllowPackages</key> <array> <string>TEAM_ID</string> </array> <key>AllowProcesses</key> <dict> <key>TEAM_ID</key> <array> <string>com.firm.updater</string> </array> </dict> </dict>
Jul ’24