SyncAdapter without a ContentProvider
You always have to specify a content provider when implementing a SyncAdapter, but that’s not to say it actually has to do anything. I’ve written SyncAdapters that create accounts and integrate with the “Accounts & sync” framework in Android that don’t necessarily store their content in a standard provider. In your xml/syncadapter.xml: <sync-adapter xmlns:android=”http://schemas.android.com/apk/res/android” android:accountType=”com.company.app” … Read more