-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdev.entitlements
More file actions
26 lines (23 loc) · 994 Bytes
/
dev.entitlements
File metadata and controls
26 lines (23 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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>
<!-- Stable keychain access group so WKWebView's WebCrypto master key
is stored once and reused across builds. Without this the random
linker-assigned identifier changes every build → errSecDuplicateItem
(-25299) → system dialog on every launch. -->
<key>keychain-access-groups</key>
<array>
<string>com.replghost.epoca</string>
</array>
<!-- Allow outbound network connections (required for WKWebView). -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Declare as a web browser so the WebKit content process can reach
AuthKit XPC — enables WebAuthn (passkeys + USB security keys like
YubiKey) in the embedded WKWebView on macOS 14+. -->
<key>com.apple.developer.web-browser</key>
<true/>
</dict>
</plist>