I understand that autosync occurs 30 seconds after content is modified. Watching logcat for fat longer then that proves that the autosync does not occur. Atleast, not for my custom SyncAdapter.
UserProvider:
<provider android:name="nl.providers.UserProvider"
android:authorities="nl.providers.UserProvider"
android:enabled="true" android:label="Users" />
UserSyncAdapter:
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="nl.providers.UserProvider"
android:accountType="nl.account"
android:supportsUploading="false"
android:userVisible="true" />
Launcher:
ContentResolver.setIsSyncable(account, "nl.providers.UserProvider", 1);
ContentResolver.setSyncAutomatically(account, "nl.providers.UserProvider", true);
Am I missing something? Or can anyone give me more information on the subject to help my search?