├── .appveyor.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── appium-tests ├── common │ └── common.spec.js └── helpers │ └── contactsHelper.js ├── doc ├── de │ ├── README.md │ └── index.md ├── es │ ├── README.md │ └── index.md ├── fr │ ├── README.md │ └── index.md ├── it │ ├── README.md │ └── index.md ├── ja │ ├── README.md │ └── index.md ├── ko │ ├── README.md │ └── index.md ├── pl │ ├── README.md │ └── index.md ├── ru │ └── index.md └── zh │ ├── README.md │ └── index.md ├── package.json ├── plugin.xml ├── src ├── android │ ├── ContactAccessor.java │ ├── ContactAccessorSdk5.java │ ├── ContactInfoDTO.java │ └── ContactManager.java ├── blackberry10 │ ├── ContactActivity.js │ ├── ContactAddress.js │ ├── ContactError.js │ ├── ContactField.js │ ├── ContactFindOptions.js │ ├── ContactName.js │ ├── ContactNews.js │ ├── ContactOrganization.js │ ├── ContactPhoto.js │ ├── contactConsts.js │ ├── contactUtils.js │ └── index.js ├── browser │ └── ContactsProxy.js ├── firefoxos │ └── ContactsProxy.js ├── ios │ ├── CDVContact.h │ ├── CDVContact.m │ ├── CDVContacts.h │ └── CDVContacts.m ├── ubuntu │ ├── contacts.cpp │ └── contacts.h ├── windows │ └── ContactProxy.js ├── windows8 │ └── ContactProxy.js └── wp │ ├── ContactPicker.xaml │ ├── ContactPicker.xaml.cs │ ├── ContactPickerTask.cs │ ├── Contacts.cs │ └── ContactsHelper.cs ├── tests ├── package.json ├── plugin.xml └── tests.js ├── types └── index.d.ts └── www ├── Contact.js ├── ContactAddress.js ├── ContactError.js ├── ContactField.js ├── ContactFieldType.js ├── ContactFindOptions.js ├── ContactName.js ├── ContactOrganization.js ├── contacts.js ├── convertUtils.js └── ios ├── Contact.js └── contacts.js /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /appium-tests/common/common.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/appium-tests/common/common.spec.js -------------------------------------------------------------------------------- /appium-tests/helpers/contactsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/appium-tests/helpers/contactsHelper.js -------------------------------------------------------------------------------- /doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/de/README.md -------------------------------------------------------------------------------- /doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/de/index.md -------------------------------------------------------------------------------- /doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/es/README.md -------------------------------------------------------------------------------- /doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/es/index.md -------------------------------------------------------------------------------- /doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/fr/README.md -------------------------------------------------------------------------------- /doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/fr/index.md -------------------------------------------------------------------------------- /doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/it/README.md -------------------------------------------------------------------------------- /doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/it/index.md -------------------------------------------------------------------------------- /doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/ja/README.md -------------------------------------------------------------------------------- /doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/ja/index.md -------------------------------------------------------------------------------- /doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/ko/README.md -------------------------------------------------------------------------------- /doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/ko/index.md -------------------------------------------------------------------------------- /doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/pl/README.md -------------------------------------------------------------------------------- /doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/pl/index.md -------------------------------------------------------------------------------- /doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/ru/index.md -------------------------------------------------------------------------------- /doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/zh/README.md -------------------------------------------------------------------------------- /doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/doc/zh/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/ContactAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/android/ContactAccessor.java -------------------------------------------------------------------------------- /src/android/ContactAccessorSdk5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/android/ContactAccessorSdk5.java -------------------------------------------------------------------------------- /src/android/ContactInfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/android/ContactInfoDTO.java -------------------------------------------------------------------------------- /src/android/ContactManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/android/ContactManager.java -------------------------------------------------------------------------------- /src/blackberry10/ContactActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactActivity.js -------------------------------------------------------------------------------- /src/blackberry10/ContactAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactAddress.js -------------------------------------------------------------------------------- /src/blackberry10/ContactError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactError.js -------------------------------------------------------------------------------- /src/blackberry10/ContactField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactField.js -------------------------------------------------------------------------------- /src/blackberry10/ContactFindOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactFindOptions.js -------------------------------------------------------------------------------- /src/blackberry10/ContactName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactName.js -------------------------------------------------------------------------------- /src/blackberry10/ContactNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactNews.js -------------------------------------------------------------------------------- /src/blackberry10/ContactOrganization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactOrganization.js -------------------------------------------------------------------------------- /src/blackberry10/ContactPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/ContactPhoto.js -------------------------------------------------------------------------------- /src/blackberry10/contactConsts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/contactConsts.js -------------------------------------------------------------------------------- /src/blackberry10/contactUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/contactUtils.js -------------------------------------------------------------------------------- /src/blackberry10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/blackberry10/index.js -------------------------------------------------------------------------------- /src/browser/ContactsProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/browser/ContactsProxy.js -------------------------------------------------------------------------------- /src/firefoxos/ContactsProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/firefoxos/ContactsProxy.js -------------------------------------------------------------------------------- /src/ios/CDVContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ios/CDVContact.h -------------------------------------------------------------------------------- /src/ios/CDVContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ios/CDVContact.m -------------------------------------------------------------------------------- /src/ios/CDVContacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ios/CDVContacts.h -------------------------------------------------------------------------------- /src/ios/CDVContacts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ios/CDVContacts.m -------------------------------------------------------------------------------- /src/ubuntu/contacts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ubuntu/contacts.cpp -------------------------------------------------------------------------------- /src/ubuntu/contacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/ubuntu/contacts.h -------------------------------------------------------------------------------- /src/windows/ContactProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/windows/ContactProxy.js -------------------------------------------------------------------------------- /src/windows8/ContactProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/windows8/ContactProxy.js -------------------------------------------------------------------------------- /src/wp/ContactPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/wp/ContactPicker.xaml -------------------------------------------------------------------------------- /src/wp/ContactPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/wp/ContactPicker.xaml.cs -------------------------------------------------------------------------------- /src/wp/ContactPickerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/wp/ContactPickerTask.cs -------------------------------------------------------------------------------- /src/wp/Contacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/wp/Contacts.cs -------------------------------------------------------------------------------- /src/wp/ContactsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/src/wp/ContactsHelper.cs -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/tests/tests.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/Contact.js -------------------------------------------------------------------------------- /www/ContactAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactAddress.js -------------------------------------------------------------------------------- /www/ContactError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactError.js -------------------------------------------------------------------------------- /www/ContactField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactField.js -------------------------------------------------------------------------------- /www/ContactFieldType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactFieldType.js -------------------------------------------------------------------------------- /www/ContactFindOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactFindOptions.js -------------------------------------------------------------------------------- /www/ContactName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactName.js -------------------------------------------------------------------------------- /www/ContactOrganization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ContactOrganization.js -------------------------------------------------------------------------------- /www/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/contacts.js -------------------------------------------------------------------------------- /www/convertUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/convertUtils.js -------------------------------------------------------------------------------- /www/ios/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ios/Contact.js -------------------------------------------------------------------------------- /www/ios/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugin-contacts/HEAD/www/ios/contacts.js --------------------------------------------------------------------------------