mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 02:42:40 +00:00
dfae6afcb4
Replace favorites entities with a PreferencesManager, that returns observables for: - Module preferences (by module UUID) - Provider preferences (by ProviderID) Automate preferences availability in: - Module views (empty for now) - VPN server view (favorites) Synchronize preferences by making this a CloudKit container. Preferences are also available in the Tunnel by storing the container in the App Group.
25 lines
742 B
Plaintext
25 lines
742 B
Plaintext
<?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>
|
|
<key>AppConfig</key>
|
|
<dict>
|
|
<key>groupId</key>
|
|
<string>$(CFG_GROUP_ID)</string>
|
|
<key>keychainGroupId</key>
|
|
<string>$(CFG_KEYCHAIN_GROUP_ID)</string>
|
|
<key>tunnelId</key>
|
|
<string>$(CFG_TUNNEL_ID)</string>
|
|
<key>cloudKitPreferencesId</key>
|
|
<string>$(CFG_CLOUDKIT_PREFERENCES_ID)</string>
|
|
</dict>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.networkextension.packet-tunnel</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).PacketTunnelProvider</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|