All Projects → loicknuchel → Cordova Device Accounts

loicknuchel / Cordova Device Accounts

This plugin is not maintained anymore... Use it at your owns risks

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Cordova Device Accounts

AASecondaryScreen
[Deprecated] · Approachable implementation of iOS AirPlay-Mirroring using Swift.
Stars: ✭ 40 (+60%)
Mutual labels:  obsolete
Deprecated Mapbox Ios Sdk
REPLACED – use https://www.mapbox.com/ios-sdk instead
Stars: ✭ 325 (+1200%)
Mutual labels:  obsolete
Pygeoip
DEPRECATED: Pure Python API for Maxmind's binary GeoIP databases
Stars: ✭ 483 (+1832%)
Mutual labels:  obsolete
Kwicks
⛔ Kwicks for jQuery - fork of jQuery Kwicks by Jeremy Martin
Stars: ✭ 50 (+100%)
Mutual labels:  obsolete
standard coding hook
Git hooks that verifies if your commit message respects the norm
Stars: ✭ 14 (-44%)
Mutual labels:  obsolete
Asepsis
a solution for .DS_Store pollution
Stars: ✭ 346 (+1284%)
Mutual labels:  obsolete
QR
DEPRECATED The bookmarklet and extensions generate QRCode of the current URL for viewing on mobile devices (Google Chrome/Mozilla Firefox/Opera/Safari)
Stars: ✭ 20 (-20%)
Mutual labels:  obsolete
Docker Cleanup
DEPRECATED Automatic Docker image, container and volume cleanup
Stars: ✭ 582 (+2228%)
Mutual labels:  obsolete
Simpleauthentication
⛔️ [DEPRECATED] A really simple way for developers to add "Social Authentication" to their ASP.NET web application
Stars: ✭ 299 (+1096%)
Mutual labels:  obsolete
Tinx
⛔️ Laravel Tinx is archived and no longer maintained.
Stars: ✭ 437 (+1648%)
Mutual labels:  obsolete
pull facebook data for good
[DEPRECATED] Imitate an API for downloading data from Facebook Data For Good
Stars: ✭ 12 (-52%)
Mutual labels:  obsolete
VRTK.Prefabs
*Deprecated* - A collection of productive prefabs for rapidly building spatial computing solutions in the Unity software.
Stars: ✭ 61 (+144%)
Mutual labels:  obsolete
Swarm
swarm docs
Stars: ✭ 403 (+1512%)
Mutual labels:  obsolete
react-native-apple-sign-in
Apple Signin for your React Native applications
Stars: ✭ 16 (-36%)
Mutual labels:  obsolete
Aawindow
[Deprecated] · UIWindow subclass to enable behavior like adaptive round-corners & detecting when Control Center is opened.
Stars: ✭ 486 (+1844%)
Mutual labels:  obsolete
Sphero-AR-SDK
🚫 DEPRECATED: Sphero's augmented reality SDK
Stars: ✭ 46 (+84%)
Mutual labels:  obsolete
Sphero.js
🚫 DEPRECATED: The Sphero JavaScript SDK to control Sphero robots.
Stars: ✭ 346 (+1284%)
Mutual labels:  obsolete
Mern Starter
⛔️ DEPRECATED - Boilerplate for getting started with MERN stack
Stars: ✭ 5,175 (+20600%)
Mutual labels:  obsolete
Mern Cli
⛔️ DEPRECATED - A cli tool for getting started with MERN
Stars: ✭ 575 (+2200%)
Mutual labels:  obsolete
Piranha
[DEPRECATED] This is the legacy version of Piranha CMS for .NET 4.5, MVC 5.2 & WebPages 3.2.
Stars: ✭ 418 (+1572%)
Mutual labels:  obsolete

cordova-device-accounts

Cordova plugin to get the device accounts on Android

Requires the android.permission.GET_ACCOUNTS permission.

Install

cordova plugin add https://github.com/loicknuchel/cordova-device-accounts.git

Methods

  • plugins.DeviceAccounts.get(onSuccess, onFail) : get all accounts registred on device
  • plugins.DeviceAccounts.getByType(type, onSuccess, onFail) : get all accounts registred on device for requested type
  • plugins.DeviceAccounts.getEmails(onSuccess, onFail) : get all emails registred on device (accounts with 'com.google' type)
  • plugins.DeviceAccounts.getEmail(onSuccess, onFail) : get the first email registred on device or undefined

Example

window.plugins.DeviceAccounts.get(function(accounts){
  // accounts is an array with objects containing name and type attributes
  console.log('account registered on this device:', accounts);
}, function(error){
  console.log('Fail to retrieve accounts, details on exception:', error);
});

Compatibility

Tested with:

  • Cordova 3.3
  • Android 4.4

Should work with Android API level 5+ and Android >2.2, but not tested.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].