mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00

* Don't use the AppIdentifierPrefix as it breaks when re-signing. * Generate entitlements using XcodeGen. * Ignore Xcode Archives. * Remove the (unused) NCE. * Update submodule.
17 lines
478 B
XML
17 lines
478 B
XML
<?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.usernotifications.filtering</key>
|
|
<true/>
|
|
<key>com.apple.security.application-groups</key>
|
|
<array>
|
|
<string>$(APP_GROUP_IDENTIFIER)</string>
|
|
</array>
|
|
<key>keychain-access-groups</key>
|
|
<array>
|
|
<string>$(KEYCHAIN_ACCESS_GROUP_IDENTIFIER)</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|