I'm creating a custom Android SyncAdapter and hit a snag following the SampleSyncAdapter.

I'm creating my equivalent of the xml/syncadapter.xml

Here's the parts I'm confused about:

android:contentAuthority="com.android.contacts" android:accountType="com.example.android.samplesync"

The documentation Says:

http://developer.android.com/reference/android/content/AbstractThreadedSyncAdapter.html

The android:contentAuthority and android:accountType attributes indicate which content authority and for which account types this sync adapter serves.

The documentation is circular in that it says nothing the name doesn't already tell you.

I get the impression that both will start with my company's name "com.acme." but from there I have no clue.

I suspect the strings can be anything, so long as they are globally unique so as not to conflict with any other apps that could be on any phone. I assume this means I will need to use these exact strings elsewhere in my code. However, I'd like to know where I will need these strings. I tried to grep for "com.android.contacts" and this is the only place it's used I can find, so it's impossible to tell how it's used by looking at an example.

If so, can I put them both in a string resource and reference them in by resource ID where needed?

Exactly what are these and how are they used?

These are just 2 of the xml fields that make no sense to me. The documentation is clearly lacking in telling me what to choose. The SyncAdapter sample is also lacking in comments on how the values are used. Is there any better way to figure out what values I should choose for my own values for these and other fields?

link|improve this question

40% accept rate
Not a duplicate but related question Should I use android AccountManager? – rds Dec 23 '11 at 10:14
feedback

1 Answer

To understand what the authority is you need to see the documentation of the contant providers:

http://developer.android.com/guide/topics/providers/content-providers.html

It states: "it identifies the content provider. For third-party applications, this should be a fully-qualified class name (reduced to lowercase) to ensure uniqueness. The authority is declared in the element's authorities attribute"

The account type is an identificator of your Authenticator that will be used for example by the clients of the AccountManager to call getAccountsByType(String).

For the SampleSyncAdapter:

android:contentAuthority="com.android.contacts"
android:accountType="com.example.android.samplesync"

android:accountType is the same as that one defined by the authenticator.

So the content-Authority specifies which content provider will be synchronized locally and the accountType specifies which authenticator will be used to access the data remotely. The accountType is also used to obtain the sync adapter's specific content-uri.

For example when you want to start a sync you need to call requestSync like this:

final Account account = new Account(accountName, ACCOUNT_TYPE); ContentResolver.requestSync(account, CONTENT_AUTHORITY, new Bundle());

At the same time to build the content-uri for your sync adapter you can use something like:

Uri CONTENT_URI = ContactsContract.RawContacts.CONTENT_URI.buildUpon().appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName).appendQueryParameter(RawContacts.ACCOUNT_TYPE, SyncAdapter.ACCOUNT_TYPE).build();

Have a look to android-sync-adapter

link|improve this answer
I don't think this is correct. Here's why. Using a fully qualified class name that is lowercase contradicts the Notepad example AUTHORITY ("com.google.provider.NotePad"). The contentAuthority is for a SyncAdapter. The fully qualified name would not contain "provider" nor a capitalized NotePad. – Mitch Dec 16 '11 at 3:17
"For third-party applications...". It means that it is not strange that the NotePad uses capital letters. – herschel Dec 16 '11 at 11:26
and please have a look to this: stackoverflow.com/questions/4649808/… – herschel Dec 16 '11 at 11:45
As I understand it, the Notepad example was written by Google to show Third party developers an example of how to write an app. Are you saying it's written by Google so they showing third party developers an app as if they worked at Google? What about the "provider" in the example? The simpler reason for the inconsistency is that the link you describe is talking about a Provider and not a SyncAdapter. From your quote: "The authority is declared in the element's authorities attribute". Note they describe "authorities" and not "contentAuthority", which is what my question is about. – Mitch Dec 17 '11 at 2:44
1  
herschel is right. the accountAuthority references which contentProvider is responsible for this synadapter (for example: contacts). The accountType identifies your generated account (for example for your app. Facebook, twitter, last.fm all create such accounts to manager their "own" data). Also the name "provider" would be ok, as its part of the classname. – ins0m Dec 19 '11 at 17:34
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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