I am creating a new macOS application that requires access to files outside of the sandbox. It needs to be docked in a silent state and packaged using the Electron Builder application. I have configured the relevant permissions as com.apple.security.memory-exception.files.absolute path.read-only,
It can be accessed normally in the local version of mas dev. The configuration parameters are as follows:
<key>com.apple.security.temporary-exception.files.absolute-path.read-only</key>
<array>
<string>/Volumes/NO NAME/</string>
<string>/Volumes/NO NAME 1/</string>
<string>/Volumes/NO NAME 2/</string>
</array>
But during the review period of the app store, some people said it was not of legal value. The following is the original statement:
Your application is not properly sandboxed, or it contains one or more rights with invalid values. Before resubmitting the new binary file, please review the included rights and sandbox documentation and resolve this issue.
com.apple.security.temporary-exception.files.absolute-path.read-only True
If there is a com.apple.security.memory-exception.files.absolute path.read-only authorization, will the app store accept it? What do I need to do to access it?
3
0
1.7k