The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
23 views

Android Development service authentication [closed]

Can I edit the dialog box which appears while stopping a service??? I want to run a monitor service to be run in my app.... where i need to authenticate people who wants to end the service, with a ...
0
votes
1answer
40 views

Filtering photos in facebook using graph api does not work

The route me/home?filter=app_2305272732 should work for photos but when I try that, I am getting active access token required error, but if I just hit me/home then it works perfectly. Also, I tried ...
0
votes
1answer
119 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
1answer
243 views

Allow user to sign in with Facebook, Twitter, Gmail Account in android app

I want my app to have Sign In with Facebook or Twitter or Gmail. My app will not post on theire respective account, just a way of authorization or user creation for my app. Is there any easy library ...
2
votes
1answer
116 views

Android: Some questions about security and user authentication (register, login) through HTTP

I just can't get my head straight about this one. I'm currently building a rather large-scale application on Android. I've run in to a couple of problems regarding security and authentication ...
0
votes
1answer
106 views

Using AuthenticatorActivity as application signin

My app requires a sync adapter and therefore requires some authentication to take place before an account can be added to the Accounts & Sync. I have followed the sample sync adapter app and have ...
6
votes
2answers
307 views

Android Authentication Mananger, when is user permission required?

I am writing an Android App and I need to request an Auth token from the account. Getting the list of accounts and the token is easy, I have that working so far. The problem is that Jelly Bean opens ...
0
votes
2answers
614 views

Android 4.0 SSL Authentication

I'm trying to build an RSS feed reader that needs to do some client side SSL authentication. I've got, or at least think I have, the certificate. However I now cannot figure out how to setup a ssl ...
0
votes
0answers
213 views

Android 4.0 How to do Client SSL Authentication

Im new to android and know very little about authentication. Ive been asked to build an rss feed app that will need to do Client side certificate authentication through SSL. ive looked into 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 ...
1
vote
2answers
547 views

Android Authenticator Launch Login Screen When No Account Present

I've built an Authenticator, I've built a SyncAdapter (both can be manually executed through the settings on the emulator). How do I get my application to launch the login screen (addAccount method) ...
6
votes
1answer
152 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
840 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 ...