cordova-android-accountmanager is an Android AccountManager plugin for cordova-android.
It currently only supports explicit account handling (programatically adding/removing/settin/getting account details to the AccountManager).
var am = window.plugins.accountmanager;
// Add account explicitly
am.addAccountExplicitly('MyAccountType', 'bob', 'passwordbob', null, function(error, bob)
{
// bob.name = 'bob'
// bob.type = 'MyAccountType'
// List all accounts of MyAccountType
am.getAccountsByType('MyAccountType', function(error, accounts)
{
accounts.forEach(function(account)
{
console.log('Account: ' + JSON.stringify(account));
});
});
// Get password
am.getPassword(bob, function(error, password)
{
console.log("Bob's password: " + password);
});
// Get/Set user data
am.setUserData(bob, 'age', 30);
am.getUserData(bob, 'age', function(error, age)
{
console.log('Bob is ' + age + 'years old');
});
// Remove account
am.removeAccount(bob);
});
Not yet supported.
cordova plugin add https://github.com/polychrom/cordova-android-accountmanager.git
- Copy (or link) all the .java files into your project src (under the appropriate com.polychrom.cordova package).
- Copy accountmanager.js into your cordova app's www directory
- Add
<script charset="utf-8" src="accountmanager.js"></script>
to your cordova app's HTML. - Copy (or link) authenticator.xml to your project's res/xml/ folder.
To register the AuthenticatorService with your application, the following will need to be added to your manifest's application element:
<!-- The authenticator service -->
<service android:name="com.polychrom.cordova.AuthenticatorService" android:exported="false">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator" />
</service>
Depending on the level of usage, the following permissions may be required by the plugin for correct usage:
- android.permission.MANAGE_ACCOUNTS
- android.permission.AUTHENTICATE_ACCOUNTS
- android.permission.GET_ACCOUNTS
- android.permission.USE_CREDENTIALS
This plugin can be configured via Android string resources (res/values/strings.xml) as follows:
- [required]
aam_account_type
: Specifies the plugin's authenticator account type (this value must match the first parameter passed into accountmanager.addAccountExplicitly) MyCustomAccountName
See the AccountManager documentation for specific requirements for each function.