{"id":18614991,"url":"https://github.com/andrewjbateman/ionic-angular-contacts","last_synced_at":"2026-02-28T06:20:40.732Z","repository":{"id":41752025,"uuid":"224515694","full_name":"AndrewJBateman/ionic-angular-contacts","owner":"AndrewJBateman","description":":clipboard: Ionic app to transfer contacts using Cordova plugins. Tutorial from the Ionic Academy","archived":false,"fork":false,"pushed_at":"2023-02-04T06:08:02.000Z","size":5399,"stargazers_count":6,"open_issues_count":18,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T06:51:15.474Z","etag":null,"topics":["angular","angular13","contacts","cordova","cordova-plugins","ionic","ionic6","phone-contacts","sms","tutorial"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndrewJBateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-27T20:56:32.000Z","updated_at":"2024-01-19T16:23:05.000Z","dependencies_parsed_at":"2023-02-18T14:16:04.584Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-contacts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-contacts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-contacts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-contacts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-contacts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-contacts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248322236,"owners_count":21084333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angular13","contacts","cordova","cordova-plugins","ionic","ionic6","phone-contacts","sms","tutorial"],"created_at":"2024-11-07T03:27:45.072Z","updated_at":"2025-04-11T00:30:59.469Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","readme":"# :zap: Ionic Angular Contacts\n\n* App to view and add contacts to phone native contacts list using the [Ionic framework](https://ionicframework.com/docs).\n* Another great Ionic Quick Win from [Simon Grimm IonicAcademy Youtube video 'Ionic 4 Native Contact Management (Call, SMS)'](https://www.youtube.com/watch?v=a8vOLMcOg68) with updates\n* **Note:** to open web links in a new window use: _ctrl+click on link_\n\n![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/ionic-angular-contacts?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-angular-contacts?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-angular-contacts?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-angular-contacts?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [:zap: Ionic Angular Contacts](#zap-ionic-angular-contacts)\n  * [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n  * [:books: General info](#books-general-info)\n  * [:camera: Screenshots](#camera-screenshots)\n  * [:signal_strength: Technologies](#signal_strength-technologies)\n  * [:floppy_disk: Setup](#floppy_disk-setup)\n  * [:computer: Code Examples](#computer-code-examples)\n  * [:cool: Features](#cool-features)\n  * [:clipboard: Status \u0026 To-do list](#clipboard-status--to-do-list)\n  * [:clap: Inspiration](#clap-inspiration)\n  * [:file_folder: License](#file_folder-license)\n  * [:envelope: Contact](#envelope-contact)\n\n## :books: General info\n\n* App lists all contacts from the phone Contacts list and a contact can be added. The user can also call or send an sms to a contact.\n\n## :camera: Screenshots\n\n![Example screenshot](./img/home.png)\n\n## :signal_strength: Technologies\n\n* [Ionic v6](https://ionicframework.com/)\n* [Ionic/angular v6](https://ionicframework.com/)\n* [Angular framework v13](https://angular.io/)\n* [Cordova plugin Contacts v3](https://github.com/apache/cordova-plugin-contacts). This plugin is being deprecated\n* [Cordova plugin sms v1](https://github.com/cordova-sms/cordova-sms-plugin)\n* [Cordova plugin call number v1](https://github.com/Rohfosho/CordovaCallNumberPlugin)\n\n## :floppy_disk: Setup\n\n* Install dependencies using `npm i`\n* To start the server on _localhost://8100_ type: 'ionic serve'\n\n## :computer: Code Examples\n\n* function to load all contacts so they can be shown on-screen as a list.\n\n```typescript\nloadContacts() {\n  let options = {\n    filter: '',\n    multiple: true,\n    hasPhoneNumber: true\n  };\n\n  this.contacts.find(['*'], options).then((contacts: Contact[]) =\u003e {\n    this.myContacts = contacts;\n    console.log('Contacts: ', contacts);\n  });\n}\n```\n\n## :cool: Features\n\n* User can call a contact or send them an sms.\n\n## :clipboard: Status \u0026 To-do list\n\n* Status: Compiles and displays in simulator on 'ionic serve --devapp'. Needs to be installed on device to test it.\n* To-do: Deploy to device and test.\n\n## :clap: Inspiration\n\n* [Simon Grimm IonicAcademy Youtube video 'Ionic 4 Native Contact Management (Call, SMS)'](https://www.youtube.com/watch?v=a8vOLMcOg68)\n\n## :file_folder: License\n\n* This project is licensed under the terms of the MIT license.\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-contacts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-contacts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-contacts/lists"}