entitlements.plist 693 B

1234567891011121314151617
  1. <!--?xml version="1.0" encoding="UTF-8"?-->
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
  6. <true/>
  7. <key>com.apple.security.device.camera</key>
  8. <true/>
  9. <key>com.apple.security.device.audio-input</key>
  10. <true/>
  11. <key>com.apple.security.cs.disable-library-validation</key>
  12. <true/>
  13. <!-- Allows @executable_path to load libaries from within the .app bundle. -->
  14. <key>com.apple.security.cs.allow-dyld-environment-variables</key>
  15. <true/>
  16. </dict>
  17. </plist>