mirror of
https://github.com/yattee/yattee.git
synced 2025-11-20 08:52:20 +00:00
Enable Allow Unsigned Executable Memory and Disable Library Validation entitlements for macOS target only to support MPV player backend.
24 lines
777 B
XML
24 lines
777 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<true/>
|
|
<key>com.apple.security.files.user-selected.read-only</key>
|
|
<true/>
|
|
<key>com.apple.security.files.bookmarks.app-scope</key>
|
|
<true/>
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.temporary-exception.mach-lookup.global-name</key>
|
|
<array>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spki</string>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spks</string>
|
|
</array>
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.disable-library-validation</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|