Google アカウントのパスワードを取得しようとしていますが、セキュリティ例外が発生します。
androidManifest.xml
また、account_manager、aunthenticator、get_account、アカウントの管理にアクセス許可を与えました。
android.accounts.Account[] googleAccount =
AccountManager.get(mContext).getAccounts();
for (android.accounts.Account account: googleAccount ) {
String pwd = AccountManager.get(mContext).getPassword(account);
AccountManager.get(mContext).setPassword(account, null);
}