[android-developers] Re: Android Contacts backup and sync application

2013-03-12 Thread Johnny
Have you got the solution? Actually I am also trying to do this task. On Thursday, March 31, 2011 5:55:01 PM UTC+5:30, UD wrote: Hi, I am working on a contacts backup and sync. The target is to send all details of all contacts to a server (custom protocol defined) as a backup. During

[android-developers] Re: Android Contacts backup and sync application

2011-04-06 Thread Jens
Uh, there's a complete sort-of-working-if-you-disregard-the- embarrassingly-huge-glaring-holes-in-the-default-contacts-app-that- Google-will-never-fix example @ developer.android.com. http://developer.android.com/resources/samples/SampleSyncAdapter/index.html On 31 mar, 14:25, Udayan Warnekar

[android-developers] Re: Android Contacts

2011-02-22 Thread Koby
Hi, the fact your got 3 account from the ContactsContract.Contacts.CONTENT_URI means they are not aggregated together. You can aggregate this those contacts using the default contact manager (com.android.contacts), or you can do it from the code. On 23 ינואר, 13:43, L0rdAli3n

[android-developers] Re: Android Contacts

2011-01-23 Thread L0rdAli3n
Thanks for the link. Unfortunately I wasn't able to find the query. 3.614 lines of code are really hard to understand. Could you assist me? On 16 Jan., 08:05, Zsolt Vasvari zvasv...@gmail.com wrote: Hi, the source code to the Contacts app is available here:

[android-developers] Re: Android Contacts

2011-01-23 Thread L0rdAli3n
Thanks for the link. Unfortunately I wasn't able to find the query. 3.614 lines of code are really hard to understand. Could you assist me? On 16 Jan., 08:05, Zsolt Vasvari zvasv...@gmail.com wrote: Hi, the source code to the Contacts app is available here:

[android-developers] Re: Android Contacts

2011-01-15 Thread Zsolt Vasvari
Hi, the source code to the Contacts app is available here: http://android.git.kernel.org/?p=platform/packages/apps/Contacts.git;a=summary As Dmitri mentioned it, if you see the desired list in the Contacts app, dig into the source and find out what query it is issuing the ContactsProvider. And