Contacts
Access and manage Contacts on the device.
https://github.com/apache/cordova-plugin-contacts
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-contacts $ npm install @ionic-native/contacts $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-contacts $ npm install @ionic-native/contacts
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- BlackBerry 10
- Browser
- Firefox OS
- iOS
- Ubuntu
- Windows
- Windows 8
- Windows Phone
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Contacts, Contact, ContactField, ContactName } from '@ionic-native/contacts/ngx';
constructor(private contacts: Contacts) { }
let contact: Contact = this.contacts.create();
contact.name = new ContactName(null, 'Smith', 'John');contact.phoneNumbers = [new ContactField('mobile', '6471234567')];contact.save().then( () => console.log('Contact saved!', contact), (error: any) => console.error('Error saving contact.', error));