Importing gmail contacts on android emulator

前端 未结 6 1193
没有蜡笔的小新
没有蜡笔的小新 2020-12-29 07:38

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

6条回答
  •  爱一瞬间的悲伤
    2020-12-29 08:25

    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.

提交回复
热议问题