mirror of
https://github.com/bitwarden/android.git
synced 2025-01-01 05:48:34 +03:00
2791d4b8ec
* WIP Fixes for iOS push notifications * WIP Fixes for iOS push notifications, fix missed implementation on android * Fix some issues on the push notifications, changed to Debug Console.WriteLine, and added update on entitlements on the build.yml
31 lines
939 B
Text
31 lines
939 B
Text
<?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.authentication-services.autofill-credential-provider</key>
|
|
<true/>
|
|
<key>com.apple.security.application-groups</key>
|
|
<array>
|
|
<string>group.com.8bit.bitwarden</string>
|
|
</array>
|
|
<key>keychain-access-groups</key>
|
|
<array>
|
|
<string>$(AppIdentifierPrefix)com.8bit.bitwarden</string>
|
|
</array>
|
|
<key>com.apple.developer.ubiquity-container-identifiers</key>
|
|
<array>
|
|
<string>iCloud.$(CFBundleIdentifier)</string>
|
|
</array>
|
|
<key>com.apple.developer.nfc.readersession.formats</key>
|
|
<array>
|
|
<string>NDEF</string>
|
|
<string>TAG</string>
|
|
</array>
|
|
<key>com.apple.developer.associated-domains</key>
|
|
<array>
|
|
<string>webcredentials:bitwarden.com</string>
|
|
</array>
|
|
<key>aps-environment</key>
|
|
<string>development</string>
|
|
</dict>
|
|
</plist>
|