I want to import contacts from my gmail account on android emulator in the same way you can do it on T-Mobile G1 phone.

Is it possible?

[I have this question too: pentium10]
I am wondering if there is a way to do all this?

link|improve this question

I've only found "import contacts from SIM" on my emulator from v1.5 sdk. When I logged in through emulator browser into gmail in both mobile and desktop version, I haven't seen any trigger to do this. – noel aye Jul 11 '09 at 16:53
I was told that G1 phone by default includes functionality that do sync of phone contacts and Google Account contacts, I am missing that from emulator. I guess that this function must be somehow "installable". – Jiri Jul 11 '09 at 17:01
feedback

3 Answers

I don't know about setting up a permanent sync, but you can do a one-time import of your contacts relatively simply.

Go to your gmail account using a web browser, click 'contacts' on the left sidebar. Select all the contacts you want on your phone, and choose to export them in vCard format. This will download a *.vcf file to your computer containing the contacts.

Push the vcf file to the SD card on your emulator, like so:

$ adb push contacts.vcf /sdcard/contacts.vcf
$ adb sync

Then open the contacts app on the emulator, and hit menu, import. Choose to import from SD card, and the vCard file will be found and your contacts imported.

link|improve this answer
Thanks, it works fine! – Anton Derevyanko Mar 28 '11 at 15:31
feedback

If you sync your Android phone to your Google account, Google needs a unique ID to identify the device. Real phones do have a globally unique IMEI number, but all emulator installations are the same.

Try

((TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId();

in a Context and it should always return 0 on the emulator, but a unique key on a real world phone.

link|improve this answer
1  
I understand that this can be the issue, but I do not understand why google needs ID. What google account authetification details are for? – Jiri Jul 21 '09 at 12:35
feedback

The emulator image might not include the necessary sync provider. If it does, the way to trigger it will be to run the setup wizard where you put in your Google account email and password. One way to launch the wizard, if it's present, is to install AnyCut, create a shortcut to the activity called "Setup Wizard" (if I remember correctly) and click on it. Of course, you might not have Market to get to AnyCut... you could do adb pull /data/app/com.appdroid.anycut.apk anycut.apk from a real phone.

link|improve this answer
still will not enable gmail to authenticate an emulator. – gcb Oct 23 '10 at 21:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.