Skip to content

Commit

Permalink
Fix the keychain-access-groups entitlement
Browse files Browse the repository at this point in the history
Fix the keychain-access-groups entitlement to prevent the intermittent issue with keychain not being able to be accessed/updated.
34018 Keychain Errors - https://developer.apple.com/forums/thread/114456
  • Loading branch information
PDLMobileApps authored Sep 29, 2020
1 parent a37d303 commit df0794f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@
<param name="ios-package" value="SecureKeyStore" />
</feature>
</config-file>
<config-file target="*-Debug.plist" parent="keychain-access-groups">
<array>
<string>$(AppIdentifierPrefix)$PACKAGE_NAME</string>
</array>
</config-file>
<config-file target="*-Release.plist" parent="keychain-access-groups">
<array>
<string>$(AppIdentifierPrefix)$PACKAGE_NAME</string>
</array>
</config-file>
<header-file src="src/ios/SecureKeyStore.h" />
<source-file src="src/ios/SecureKeyStore.m"/>
<header-file src="src/ios/KeychainItemWrapper.h"/>
Expand Down

0 comments on commit df0794f

Please sign in to comment.