Reputation: 69
I want to develop a contacts app with some modified features. How can I import the open source default android contacts app into Android Studio so that I can add my new features?
Upvotes: 0
Views: 46
Reputation: 7511
Most of the handset provider customize the contacts app, to get handset specific app you need to **extract the contacts app apk and reverse engineer it.
Refer the source code provided by google here(nexus devices) https://github.com/android/platform_packages_apps_contacts
you can read and learn how to develop it here http://www.cs.trincoll.edu/hfoss/wiki/Tutorial:Making_a_Contacts_Application
Upvotes: 1