accounts

Show settings under accounts & sync menu for android app

怎甘沉沦 提交于 2019-11-28 17:19:14
I am implementing a syncadapter for an android app and would like to make the settings for the account available under the "Accounts & sync" menu. I have seen this done in the DropBox app(as shown below), but I have not been able to find documentation on how to do this. I have the accounted added, just want to add a link to the account settings in this menu. In your Android Manifest, you should have a section like this to define your account authenticator: <service android:name="AccountAuthenticatorService" android:exported="true" android:process=":auth"> <intent-filter> <action android:name=

Prevent users from starting multiple accounts?

六月ゝ 毕业季﹏ 提交于 2019-11-28 15:35:52
I know that in the end it, can't be done. But, what are the options to: a) limit the options for persons to create multiple accounts, b) increase the chance of detecting multiple accounts / person for a blog-like web service? (people can sign up for their own blog) Update: I think the 'limit the options' has been answered nicely. (there is no reliable method, but we can raise the bar) However, I would still like to know what other options there are to detect multiple accounts? I'm assuming you're talking about a free service? I can't think of any ways that don't either have serious drawbacks

Show settings under accounts & sync menu for android app

时间秒杀一切 提交于 2019-11-27 10:37:42
问题 I am implementing a syncadapter for an android app and would like to make the settings for the account available under the "Accounts & sync" menu. I have seen this done in the DropBox app(as shown below), but I have not been able to find documentation on how to do this. I have the accounted added, just want to add a link to the account settings in this menu. 回答1: In your Android Manifest, you should have a section like this to define your account authenticator: <service android:name=

Prevent users from starting multiple accounts?

狂风中的少年 提交于 2019-11-27 09:17:54
问题 I know that in the end it, can't be done. But, what are the options to: a) limit the options for persons to create multiple accounts, b) increase the chance of detecting multiple accounts / person for a blog-like web service? (people can sign up for their own blog) Update: I think the 'limit the options' has been answered nicely. (there is no reliable method, but we can raise the bar) However, I would still like to know what other options there are to detect multiple accounts? 回答1: I'm