I'd like to use the android AccountManger to sync my webservice and application (standard sync of contacts and calander) however, AccountManager only appears to store a username and password. My web service takes three credentials: a username, a password and an account. What is the best practice for storing the third piece of information?
| ||||
feedback
|
|
From Android's documentation it's supposed to be done with either the userData Bundle when the Account is added:
or adding explicitly the values:
But I'm having trouble with this: | |||
feedback
|
|
As pablisco explained, you can use AccountManager's ability to store arbitrary user data through addAccountExplicitly()'s userData Bundle parameter:
Later on, for example in your Authenticator's getAuthToken() method, you can retrieve the data related to the account you are working with:
Unfortunately as of this writing you can only retrieve Strings, so your data should be stored as a String when you first build the Bundle. Hope this helps someone. | |||
|
feedback
|