アプリケーションに Google サインインを統合しました。毎回正常にログインできますが、デバイスに新しい Google アカウントを追加してログインしようとすると、添付のポップアップ ダイアログが表示されます。「未登録のAndroidアプリ」と表示される理由がわかりません。その場合、アプリケーションを登録するにはどうすればよいですか?
添付のポップアップ ダイアログ:参照用の添付画像
私は次のコードを使用しています:
try {
String token = GoogleAuthUtil.getToken(mActivity, mEmail,
"oauth2:https://www.googleapis.com/auth/userinfo.profile");
return token;
} catch (UserRecoverableAuthException userRecoverableException) {
mActivity.startActivityForResult(userRecoverableException.getIntent(), USER_RECOVERABLE_AUTH);
} catch (Exception e) {
e.printStackTrace();
}
アプリの登録方法を教えてください。前もって感謝します。