본문 바로가기

OS/Android

Android SHA1 Debug

반응형

이번에 파이어베이스 AUTH 기능을 사용하려고 했더니 파이어베이스에 SHA-1 값을 등록시켜야 쓸 수 있다고 한다.

 

일단은 개발하는 동안에는 디버그 SHA-1을 사용하는게 용이할 것으로 보인다.

출시할 때는 Release SHA-1을 등록해야하니 출시전에 꼭 확인해봐야 한다.

 

보통 디버그 SHA-1값을 볼 수 있는 방법으로 Android Studio의 Gradle을 이용하는 방법, 커맨드라인으로 확인하는 방법 이렇게 두가지가 있는 걸로 보이는데 첫 번째 방법은 mssing KeyStore라는 에러 문구가 떠서 두 번째 방법으로 진행했다.

1. CMD 오픈

2. cd C:\Users\{MyFolder}\.android

3. keytool -list -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android

4. 인증서 지문 밑에 SHA1  AA:AA:AA:AA:AA:A:AA:AA:AA:AA:AA:AA:AA:AA:AA:AA:AA:AA:AA:AA 이런 형식의 문자열이 있을 것이다. 

 

developers.google.com/places/android-sdk/get-api-key#debug-cert

 

Get an API Key  |  Places SDK for Android  |  Google Developers

Before you begin Before you start using the Places SDK for Android, you need a project with a billing account and the Places API enabled. To learn more, see Get Started with Google Maps Platform. Creating API keys The API key is a unique identifier that au

developers.google.com

 

반응형