cordova-plugin-keychain-sharing
v1.0.6
Published
CodePush Plugin for Keychain Sharing
Downloads
8
Maintainers
Readme
Keychain Sharing Cordova plugin
This plugin allows you to share data between your apps (with different bundle ID's) by leveraging iOS Keychain Sharing.
The trick is to use the same shared bundle id which (from experience) should be one of your app's bundle id's. Example:
App A:
cordova create keychainsharingb com.telerik.plugindemo.keychainsharinga
cordova plugin add cordova-plugin-keychainsharing --variable KEYCHAIN_ACCESS_GROUP=com.telerik.plugindemo.keychainsharinga
App B:
cordova create keychainsharingb com.telerik.plugindemo.keychainsharingb
cordova plugin add cordova-plugin-keychainsharing --variable KEYCHAIN_ACCESS_GROUP=com.telerik.plugindemo.keychainsharinga
Note that the value for KEYCHAIN_ACCESS_GROUP
above is identical.