ContentProvided defined for synchronization is dummy (in accordance with this approach).

link|improve this question

Looks like addPeriodicSync is a key, but it requires API 8 – LA_ Apr 2 '11 at 20:52
feedback

1 Answer

up vote 5 down vote accepted

If API > 8, use ContentResolver.addPeriodicSync()

If API = 7, create a service with a periodic timer callback, and call ContentResolver.requestSync().

API < 6 does not support syncAdapter, so no worries.

link|improve this answer
Thanks. API = 7. So, looks like there is no much sense for me to support synchronization thru SyncAdapter - Service would be enough (I need to sync data with my local database, it can be done without account). – LA_ Apr 4 '11 at 15:40
You should definitely be using a SyncAdapter and ContentProvider. Just because you're not sharing externally doesn't mean you should be doing it all by hand. ContentProvider is a great, clean interface and ensures all your database work happens in a background thread. Prevents ANR errors etc. Keep at it, it's the way to go. – jcwenger Apr 4 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

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