-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
35 lines (28 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
AccountList Phonegap Plugin for Android
=======================================
This plugin allows you to obtain an array containing all the accounts configured on the device
Adding the Plugin to your project
=================================
To install the plugin, copy accountlist.js to your project's www folder and include a reference to it in your html files.
<script type="text/javascript" src="accountlist.js"></script>
Create a folder called 'com/seltzlab/mobile' within your project's src folder and copy AccountList.java file into that new folder.
Add a plugin line to res/xml/plugins.xml
<plugin name="AccountList" value="com.seltzlab.com.AccountList" />
Add a permission line to the AndroidManifest.xml
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
Using the plugin
================
window.plugins.AccountList.get(
{
type: 'account type' // if not specified get all accounts
},
function (result) {
console.log(result.length);
for (i in result) {
console.log(result[i]);
}
},
function (error) {
console.log(error);
}
);