-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Telatynski <[email protected]>
- Loading branch information
Showing
3 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?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> | ||
<!-- https://github.com/electron/electron-notarize#prerequisites --> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
|
||
<!-- https://github.com/electron-userland/electron-builder/issues/3940 --> | ||
<key>com.apple.security.cs.disable-library-validation</key> | ||
<true/> | ||
|
||
<!-- Enable the app sandbox --> | ||
<key>com.apple.security.app-sandbox</key> | ||
<true/> | ||
<key>com.apple.security.inherit</key> | ||
<true/> | ||
|
||
<!-- Allow opening outgoing network connections --> | ||
<key>com.apple.security.network.client</key> | ||
<true/> | ||
|
||
<!-- Allow opening & saving files for upload & download --> | ||
<key>com.apple.security.files.user-selected.read-write</key> | ||
<true/> | ||
|
||
<!-- Access to camera & microphone for calls -> | ||
<key>com.apple.security.device.camera</key> | ||
<true/> | ||
<key>com.apple.security.device.audio-input</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters