728x90
For Debug mode:
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
for Release mode:
keytool -list -v -keystore {keystore_name} -alias {alias_name}
example:
keytool -list -v -keystore C:\Users\MG\Desktop\test.jks -alias test
- + Debug 모드 필요시 간단한 방법
-
Run your project
-
Click on Gradle menu
-
Expand Gradle Tasks tree
-
Double click on android -> signingReport and see the magic
-
It will tell you everything on the Run tab
Result Under Run Tab If Android Studio < 2.2
From android studio 2.2
Result will be available under Run console but use highlighted toggle button
Reference
https://stackoverflow.com/questions/15727912/sha-1-fingerprint-of-keystore-certificate
728x90
'Dev > Android' 카테고리의 다른 글
[Android] 블루투스 장치 목록 가져오기 관련 (0) | 2019.10.18 |
---|---|
[Android] Google Account Login(구글 계정 로그인 Api) 사용법 (1) | 2019.10.16 |
[Android] Room 라이브러리 사용법 (Android Architecture Component) (0) | 2019.10.11 |
[Android] App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. (0) | 2019.10.10 |
[Android] LocationManager 사용법 (0) | 2019.10.02 |