-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add alpha specific app groups (#1934)
Task/Issue URL: https://app.asana.com/0/0/1205332058642473/f Description: This is needed to fix a potential problem when running the prod + Alpha builds side by side. If we don’t separate the app groups, we would end up sharing state between the two which could introduce problems when we change schema between releases.
- Loading branch information
Showing
4 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?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>com.apple.developer.networking.networkextension</key> | ||
<array> | ||
<string>packet-tunnel-provider</string> | ||
</array> | ||
<key>com.apple.developer.web-browser</key> | ||
<true/> | ||
<key>com.apple.security.application-groups</key> | ||
<array> | ||
<string>group.com.duckduckgo.alpha.apptp</string> | ||
<string>group.com.duckduckgo.alpha.bookmarks</string> | ||
<string>group.com.duckduckgo.alpha.contentblocker</string> | ||
<string>group.com.duckduckgo.alpha.database</string> | ||
<string>group.com.duckduckgo.alpha.netp</string> | ||
<string>group.com.duckduckgo.alpha.statistics</string> | ||
</array> | ||
</dict> | ||
</plist> |
15 changes: 15 additions & 0 deletions
15
PacketTunnelProvider/PacketTunnelProviderAlpha.entitlements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?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>com.apple.developer.networking.networkextension</key> | ||
<array> | ||
<string>packet-tunnel-provider</string> | ||
</array> | ||
<key>com.apple.security.application-groups</key> | ||
<array> | ||
<string>group.com.duckduckgo.alpha.apptp</string> | ||
<string>group.com.duckduckgo.alpha.netp</string> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?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>com.apple.security.application-groups</key> | ||
<array> | ||
<string>group.com.duckduckgo.alpha.database</string> | ||
<string>group.com.duckduckgo.alpha.bookmarks</string> | ||
</array> | ||
</dict> | ||
</plist> |