我正在为Android编写GMail客户端.我想在ListView中列出所有GMail帐户.当用户单击一个项目时,我希望程序检索相应帐户的密码.
但是,我得到一个SecurityException:
java.lang.SecurityException: caller uid 10107 is different than the authenticator's uid
这是我的代码:
AccountManager accountManager = AccountManager.get(context);
this.username = account.name;
this.password = accountManager.getPassword(account); //this is where I get the exception
我在AndroidManifest.xml中拥有所有这些权限:
根据Android reference,唯一需要的权限应该是MANAGE_ACCOUNTS.
我的代码有什么问题?
最佳答案
原文链接:https://www.f2er.com/android/430487.html