2

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
  • I'm going to do an appengine account with the syncadapter also. Curious, did you ask for username and password? I am using the user API on appengine for accounts. May 11, 2012 at 20:24

1 Answer 1

2

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" />

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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