Android M – GoogleAccountCredential setSelectedAccount不起作用 – 名称不能为null

前端之家收集整理的这篇文章主要介绍了Android M – GoogleAccountCredential setSelectedAccount不起作用 – 名称不能为null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Android M-Preview上,GoogleAccountCredential.setSelectedAccount似乎不起作用.

调试时,我注意到在调用方法后,该对象的selectedAccount和accountName字段仍然为null.

在调试时,您可以看到我的变量accountName不为空或null,我调用.setSelectedAccountName(),但正如您在调试窗口中看到的那样,GoogleAccountCredential中的字段仍为空.

Debugging window code


Debugging window debug values

我认为这可能与某些权限有关?在我的清单上,我声明了以下权限:

我知道你在M上免费获得GET_ACCOUNTS许可(根据https://developer.android.com/preview/features/runtime-permissions.html#normal),但M-Preview的其他两个权限是“未知”.也许吧,那就是那个?

最佳答案
android.permission.GET_ACCOUNTS有protectionLevel:dangerous,现在是Contacts权限组的一部分,这意味着你应该在运行时使用新的Activity.requestPermissions()来请求它.

只有这样,您才能与设备上其他应用创建的帐户进行互动.

原文链接:https://www.f2er.com/android/431318.html

猜你在找的Android相关文章