Skip to content

Commit d0d2893

Browse files
committed
Fix: Add required entitlements for file access
The app was crashing with REPORT_APP_ENTITLEMENTS_INSUFFICIENT when trying to open file/folder dialogs from the Welcome screen. Added necessary entitlements: - com.apple.security.app-sandbox: Enable App Sandbox - com.apple.security.files.user-selected.read-write: Allow user-selected file access - com.apple.security.files.bookmarks.app-scope: Allow bookmark persistence - com.apple.security.network.client: Enable network access for extensions/LSP This resolves the crash when clicking "Open File or Folder" button.
1 parent 0de7f93 commit d0d2893

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CodeEdit/CodeEdit.entitlements

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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/>
7+
<key>com.apple.security.files.user-selected.read-write</key>
8+
<true/>
9+
<key>com.apple.security.files.bookmarks.app-scope</key>
10+
<true/>
11+
<key>com.apple.security.network.client</key>
12+
<true/>
513
<key>com.apple.security.application-groups</key>
614
<array>
715
<string>app.codeedit.CodeEdit.shared</string>

0 commit comments

Comments
 (0)