When sandboxing an app for the macOS app store, is it possible to allow for read/write access to removable media (SD Cards specifically)? So far, I've haven't been able to find an entitlement that would work. The Windows Store does have an entitlement for removable media so I'm hoping I'm just missing something on the Apple side.
Here is the current entitlements content:
Our current Entitlements file has this set for the dictionary:
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.device.usb</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
</dict>
