Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In which format the contacts are stored in android?

I want to know in which format the contact details are stored in android mobile or emulator.If any body knows the answer please help me.

like image 519
Rajapandian Avatar asked Feb 01 '10 06:02

Rajapandian


1 Answers

The contacts are stored in a SQLite3 database file so the file format is ".db"

The development tool Android Debug Bridge (ADB) can be used to extract the file from an EMULATOR

ADB can also extract the file from a phone but it must be rooted first AND the ADB drivers must be installed on your machine as well

(Rooting is NOT for beginners though)

The contacts.db file is stored in the protected system memory, the file path is:

data/data/com.android.providers.contacts/databases/contacts.db

like image 133
Oliver Avatar answered Nov 07 '22 10:11

Oliver