The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
60 views

Change username and password of android custom account

I have created sync adapter for android that syncs data with my server. I works fine, but now I want to be able to change my username and password without removing and adding the account again. How ...
0
votes
1answer
61 views

Android APK Expansion testing with multiple accounts

My application is a paid application which is also using apk expansion library. For testing I have added a test account in my developer console say xyz@gmail.com And it's working as expected ...
0
votes
1answer
29 views

Add item in account menu

I have an application that has account in accounts and sync. I have option for synchronizing calendar and contacts. In the account there is menu in the upper right corner (standard like on all ...
0
votes
1answer
118 views

checking permissions in custom account authenticator

i have a custom authenticator, and i'd like to expose the user / password to other applications. to protect from any random app obtaining the credentials, i'd like to perform something like a ...
0
votes
0answers
21 views

Android AccountManager Is it possible to customise the layout that returns a list of accounts when using getAuthTokenByFeatures

When I make a call to AccountManager.get(this).getAuthTokenByFeatures(Constants.ACCOUNT_TYPE, Constants.AUTHTOKEN_TYPE, null, this, null, null, new ...
0
votes
0answers
34 views

Unconditionally synchronise my app's main authority

I have a SyncAdapter that can perform synchronisation for my content provider's authority. // Set up the association with the content provider and periodic sync ContentResolver.setIsSyncable(account, ...
1
vote
1answer
58 views

Advangates of using addAccount over exporting LoginActivity in another app?

Context: Suppose we have two Android apps installed, A that contains a custom Authenticator code and can add new accounts to AccountManager, and B that we want to have single-touch sign in flow. You ...
1
vote
1answer
184 views

How to generate correct auth tokens

I am trying to use the Android account manager for creating my app's own account, so I have studied the example provided in the SDK. However, I have a little problem understanding how I have to manage ...
0
votes
0answers
99 views

Android account manager, permission for getAuthToken()?

I have an app that links to an account on a server. Since we anticipate other apps that will link to the same account, I've been investigating Android's AccountManager for this purpose. However, as ...
2
votes
0answers
45 views

Accounts from Email application not listed

I have a method in my application which populates an array with account information. The problem is I can't get the account details stored in Email application (POP3/IMAP). Is there any way to list ...
0
votes
0answers
139 views

Customize dialog while removing account from accountmanager android

I would like to prevent user from removing the account from the Android accounts for my app. Android AbstractAccountAuthenticator provides a method getAccountRemovalAllowed which I can use to prevent ...
0
votes
1answer
43 views

Sorting Accounts

I have some accounts on android device that stored in accounts table in contacts2.db; How can i sort them by asc? I have not found access to accounts table from ContactsContract. Thanks.
0
votes
0answers
150 views

Android: custom error message on getAccountRemovalAllowed()

Because of my SyncAdapter and because I don't want to force my users to register an account inside my application, I create a dummy account every time the application is installed. This dummy account ...
8
votes
1answer
245 views

Using SyncAdapter without creating an account

My app allows people to use and manage their data regardless they're logged in. Though, as I uniquely identify each device, I want to sync data from my anonymous users (not logged ones) as well. So, I ...
2
votes
0answers
474 views

How to authorize in twitter using android AccountManager?

How to authorize in twitter using android AccountManager? AccountManager am = AccountManager.get(this); Account[] accts = am.getAccountsByType(TWITTER_ACCOUNT_TYPE); if(accts.length > 0) { ...
3
votes
1answer
156 views

Deleting the database when an Account is removed

My app uses the SyncAdapter pattern, holding user credentials using the AccountManager and a ContentProvider to store data in a db. When the account gets removed I can remove the db using the ...
-1
votes
2answers
96 views

Creating Accounts in an Android App [closed]

I am wanting to make an android app that will have user accounts. The app is like a contact manager and messaging app in one. Each contact will have a Name, a Number, and a password. Basically, the ...
2
votes
2answers
1k views

create custom account android

Whats the simplest way to create a custom account on Android? So far I've read the documentation: Creating a Custom Account Type but it certainly didn't help a lot (too vague info). I tried reading ...
5
votes
1answer
677 views

Should you use AccountManager for storing Usernames and Passwords for an Android app?

I would like to know if one should implement AccountManager to save user credentials such as username, email, passwords etc. I can't find a good reason to use it myself. I don't want other ...
2
votes
2answers
2k views

Programmatically starting the 'Add Google Account' activity in Android

I am developing an application which needs a Google account for certain options. Options are disabled when no account is detected, but I am presenting the user to add one by asking via a popup, if ...
3
votes
2answers
637 views

AccountManager getUserData returning null despite it being set

I'm working on an Android app that uses the AccountManager to store accounts & credentials. One problem I've been having is that even though I pass in a bunch of String values to the ...
1
vote
1answer
94 views

Are apps that access gmail only have write-only access or full gmail access (potential security risk?)

I use a backup app to backup SMS text messages to my GMail account registered on my HTC Desire Z Android 2.3 phone. The app requests access to the gmail account. But what does this actually mean? ...
6
votes
1answer
151 views

Who and when should call method confirmCredentials of AbstractAccountAuthenticator-based class?

I don't understand how method confirmCredentials works. I've never seen any options in the Android UI like “Confirm Credentials” or something like, there are only “Create account” and “Remove ...
8
votes
1answer
836 views

AccountAuthenticatorActivity and fragments

Is there are way to use fragments with the AccountAuthenticatorActivity when I'm using the Support Package? AccountAuthenitactorActivity does not subclass the FragmentActivity class and therefore I'm ...
0
votes
1answer
2k views

Android: calling AccountManager.getAuthToken from within the service

I'm making a simple REST client in Android: I created a service that is responsible for the REST calls, but it needs the username and password to operate. The username and password is stored in a ...