views:

56

answers:

1

I am writing a syncadapter using google account and app engine. The account appears in account and sync, but when I try to select the account for syncing, I am getting a hard database error. I am trying to figure if this error is on mobile or the app engine. Further, what can be causing this error

Another error that I am getting is failed to find provider info.

Thanks for your help!

+1  A: 

Turns out I had not added the provider in manifest. It should be something like this:

<

provider android:name=".BlaBlaProvider"
            android:label="@string/app_name"
            android:authorities="com.example.android.blabla"
            android:syncable="true" />
techy16