Sync Adapter without Account Sync Adapter without Account android android

Sync Adapter without Account


As the Android Developer docs say

Even if your app doesn't use accounts, you still need to provide an authenticator component. If you don't use accounts or server login, the information handled by the authenticator is ignored, so you can provide an authenticator component that contains stub method implementations. You also need to provide a bound Service that allows the sync adapter framework to call the authenticator's methods.

There is an entire article on Creating a Stub Authenticator. I realise that this question is old and an answer was accepted long ago, but I felt that a recent addition to the official docs should be included here.


I have created a contact sync adapter where I don't have a account authorization and or configuration screens. It wasn't that hard. I don't think having to deal with the Android Account stuff was that much of a deal.

Quote from your tutorial link:

The bad news is that there is no “stock” functionality to give you an easy way to provide an Account to the system. However, in the same Sync Adapter Example that comes with the SDK there is a lot of code you can borrow to give you Account functionality. Unless you desire a custom credentials screen, you can heist all the code in the com.example.android.samplesync.authenticator package with only a few minor changes.

So it's basically just a copy and paste from the example, that's pretty much what I did and it worked fine.

I don't know for sure but all the adapters that don't have "Remove Account" seems to be built-in ROM adapters on all the devices I've looked at. I'm not sure you have to worried about it.


I keep getting lots of notifications from this question, so I thought I'll share this info. This is how you add SyncAdapter without Account. You can put this in onCreate of MyApplication extends Application class. This assumes you already have a SyncAdapter and ContentProvider implemented. You can do that by following the tutorials listed in the question.

final String ACCOUNT_NAME = "MyApp";final String ACCOUNT_TYPE = "com.myapp.account";final String PROVIDER = "com.myapp.provider";Account appAccount = new Account(ACCOUNT_NAME,ACCOUNT_TYPE);AccountManager accountManager = AccountManager.get(getApplicationContext());if (accountManager.addAccountExplicitly(appAccount, null, null)) {   ContentResolver.setIsSyncable(appAccount, PROVIDER, 1);   ContentResolver.setMasterSyncAutomatically(true);   ContentResolver.setSyncAutomatically(appAccount, PROVIDER, true);}

res/xml/syncadapter.xml

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"    android:contentAuthority="@string/provider"    android:accountType="@string/account_type"      android:userVisible="true"      android:supportsUploading="true"/>

res/xml/authenticator.xml

<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"    android:accountType="@string/account_type"    android:icon="@drawable/app_icon"    android:smallIcon="@drawable/app_icon"    android:label="@string/app_label"/>