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?