This cordova plugin enables you to use Android Account Manager and iOS Keychain to manage accounts of one user and share with other applications of the same company (e.g google apps like gmail, youtube, etc).
It's possible to moddify this plugins to allow multiple accounts.
cordova plugin add https://github.com/kunder-lab/cordova-plugin-kunder-accountmanager-cordova8
You need to add the following settings in your config.xml file for Android Account Manager to work:
<preference name="AccountManagerLabel" value="Your Label Here" />
<preference name="AccountManagerIconUrl" value="your_icon_url_here.png" />
<preference name="AccountManagerType" value="your.unique.identifier" />
- Android
- iOS
- registerAccount: register an user in Account Manager
- removeAccount: remove an account from Account Manager (Android) and remove all data from keychain (iOS)
- getUserAccount: returns an String with account name if account exist
- getPassword: returns password if account exist
- getDataFromKey: returns data from specified key
- setUserData: set object with information into Account Manager or Keychain
- setPassword: update account password
- resetPassword: update account password with String "0000"
- accountType: the same account type unique identifier set in config.xml file
- group (Nullable): group identifier. Only for iOS shared keychain
- data: key-value object
- You can not delete user data from Account Manager. Use "setUserData" to change value to empty.
- You can delete account from Account Manager.
- removeAccount remove all keychain data from your app.
- You can not set user data to Account Manager if it doesn't have an account for your identifier.
Apache License 2.0