If I need to start synchronization adhoc, I use requestSync. But looks like it doesn't work when setIsSyncable defined as false. How to initiate synchronization by user request in this case?

Moreover, if after that I define setIsSyncable as true and also start period syncs with addPeriodicSync, synchronization starts 2 times.

link|improve this question

When you sync to the server, if a change comes in and you modify your local database to match, are you calling ContentResolver.notifyChange()? if so, with what parameters? – jcwenger Apr 4 '11 at 13:46
feedback

1 Answer

up vote 3 down vote accepted

1: To override setIsSyncable:

Add ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS set to true in the requestSync() extras Bundle.

2: Double-sync

(see comment first)

link|improve this answer
Thanks. With regards to 2 - I do nothing with notifyChange currently. – LA_ Apr 4 '11 at 15:35
feedback

Your Answer

 
or
required, but never shown

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