Skip to content

Commit e48681e

Browse files
vaibhavteldevelar
authored andcommitted
fix(appx): App sandbox not enabled (ITMS-90296) (#4244)
The issue in detail is explained here electron/osx-sign#192
1 parent 0fe8f12 commit e48681e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/app-builder-lib/templates/entitlements.mac.plist

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
57
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
68
<true/>
79
<!-- https://github.com/electron-userland/electron-builder/issues/3940 -->
810
<key>com.apple.security.cs.disable-library-validation</key>
911
<true/>
1012
</dict>
11-
</plist>
13+
</plist>

0 commit comments

Comments
 (0)