Key Hashの生成方法について、忘れそうなので備忘メモ。
それぞれ以下のコマンドを使用して生成。
- デバッグ用
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
- リリース用
keytool -exportcert -alias "エイリアス名" -keystore "Keystoreファイルのパス" | openssl sha1 -binary | openssl base64