Open GoogleCodeExporter opened 9 years ago
It seems the HTC Hero has a modified contacts app that has an additional
"contact
type" field. Unfortunately, I don't have a Hero and the emulator doesn't have
the
modified app, so I can't debug this. It's possible that any contact imported
through
the Google Contacts provider API is automatically set to type "Google".
If someone with a rooted Hero can send me a "contacts.db" file it might help.
Original comment by duckt...@gmail.com
on 17 Oct 2009 at 3:25
Original comment by duckt...@gmail.com
on 17 Oct 2009 at 3:37
Issue 33 has been merged into this issue.
Original comment by duckt...@gmail.com
on 1 Nov 2009 at 8:46
Hi, contacts.db file is attached. It contains two contacts, a google contact
and a
phone contact. As far as I can see, it should be very simple to convert a google
contact into a phone contact using sqlite3:
UPDATE people SET _sync_account = "" WHERE _id == 1;
UPDATE people SET extra_group = 2 WHERE _id == 1;
UPDATE people SET firstName = name WHERE _id == 1;
As far as I can see, _sync_account and extra_group are the only difference
between
those two contact types. I could successfully convert a google contact into a
phone
contact using these three commands on my contacts.db.
Sorry for the bad English, I am not a native speaker. I hope this gets you
started
resolving the issue. Please contact me if you need further help with this issue.
Thanks for developing open source!
Original comment by mibaue...@googlemail.com
on 1 Feb 2010 at 6:23
Attachments:
Original issue reported on code.google.com by
adrian.b...@gmail.com
on 12 Oct 2009 at 8:21