我正在尝试在我的应用程序中添加功能,通过使用方法将谷歌帐户添加到 Android 帐户管理器
mAccountManager = AccountManager.get(getBaseApplicationContext());
Account account = new Account("sample.account", "com.google");
ac.addAccountExplicitly(account, "password", null);
但它表示异常
java.lang.SecurityException: caller uid 10117 is different than the authenticator 的 uid
是否可以在应用程序代码中添加帐户(更精确地登录到现有的谷歌帐户)?我应该使用哪种方法?