Skip to content

Commit

Permalink
修复:Mac打包安装异常问题
Browse files Browse the repository at this point in the history
  • Loading branch information
modstart committed Dec 14, 2024
1 parent 76f1d74 commit 296fccb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
},
"type": "development",
"notarize": false,
"darkModeSupport": false,
"hardenedRuntime": false,
"darkModeSupport": true,
"hardenedRuntime": true,
"identity": "LinkAndroidKey"
},
"linux": {
Expand Down
6 changes: 5 additions & 1 deletion entitlements.mac.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
<!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>
<false/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>
</plist>

0 comments on commit 296fccb

Please sign in to comment.