Android 报错 java.lang.SecurityException: caller uid 10431 is different than the authenticator's uid

Android 开发,账户与同步。

在登录时使用系统AccountManager 进行账户添加,( 然后在手机-设置-账户与同步里面可以进行查看。)

在登录完成,进行添加时,报错java.lang.SecurityException: caller uid 10431 is different than the authenticator's uid

后来检查发现,是由于  Account newAccount = new Account(uName, "com.aaa.account");后面这个账户类型与authenticator.xml里面的 android:accountType="com.ccc.account"类型不一致导致的,修改为统一,就不在报错了!

猜你喜欢

转载自blog.csdn.net/yuzhidao/article/details/76098333