There are two basic methods you can use when making a SyncAdapter:
- Fill data into an existing ContentProvider.
- Create your own ContentProvider to store a new kind of data.
The former is what's going on in this example app. They have some website that has a list of contacts, and they want to store those along with the other contacts on the device. In either case, the way this all works is through a relationship between three components:
- A ContentProvider, which stores the data.
- A SyncAdapater, which communicates with a remote server to obtain data to put into the ContentProvider.
- The Android ContentResolver, which figures out how to pair up SyncAdapters and ContentProviders.
An Android device can have many different ContentProviders and many different SyncAdapters. Since a ContentResolver may not be part of the same .apk as a SyncAdapter, ContentResolver is a system service that finds the right contentProvider to store a given kind of data. It does this using the ContentAuthority string, which uniquely identifies one specific ContentProvider.
In this case, using an existing ContentProvider, you will need to look at the platform documentation to see what ContentAuthority string they use, and use the same string. If you're creating your own ContentProvider, you just need to ensure that the ContentAuthority you create is unique. The best way to do this is to use part of your domain name (java class style) in the Authority. This is illustrated in their example... com.android.contacts.