0
0

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.

DeployGate で配信後、Google認証しようとすると「ApiException:10」になる時の対処法

Last updated at Posted at 2021-06-06

DeployGate で配信後、Google認証しようとすると「ApiException:10」になる時の対処法

参考

Google認証で ApiException:10 が発生 - Qiita

やったこと

release側のフィンガープリントが足らないため出たエラーでした。
リリースビルドを実行しました。

releaseバリアントに変更
WS001163.JPG

WS001164.JPG

build.gradle
android{
    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
}

署名付きrelease.apkの作成
こちらを参考にrelease.apkを作成しました。
WS001165.JPG

WS001167.JPG

WS001168.JPG

WS001169.JPG

最後に下記を参考にフィンガープリントを取得しました。
How to get the SHA-1 fingerprint certificate in Android Studio ...

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?