9
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Unhandled Exception: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null)の対処法

Last updated at Posted at 2021-05-22

Firebase Authenticationを使ってGoogleアカウントを登録しようとすると、以下のエラーが発生しました。

[ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception: 
PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null)

解決方法

Firebaseにフィンガープリント(SHA-1SHA-256)を追加すると解決しました。

手順

「androidディレクトリ」で以下のコマンドを実行すると、SHA-1SHA-256が表示される。

$ ./gradlew signingReport

Variant: ...
Config: ...
Store: ...
Alias: ...
MD5: ...
// これ
SHA1: ...
// これ
SHA-256: ...
Valid until: ...

以下から、Firebaseの設定。

歯車アイコンから「プロジェクトを設定」を選択。

スクリーンショット 2021-05-22 22.44.00.png

マイアプリ -> Androidアプリから「フィンガープリントを追加」を選択する。

スクリーンショット 2021-05-22 22.54.14.png

./gradlew signingReportで出力したSHA-1SHA-256を「証明書のフィンガープリント」に追加して保存する。

スクリーンショット 2021-05-22 22.48.26.png

9
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?