Wednesday, September 4, 2019

Obtain Certificate SHA1 Fingerprint Using Android Studio

What is SHA1 ?

SHA1(Secure Hash Algorithm 1) hash value is typically rendered as a hexadecimal number, 40 digits long used by the organizations like GoogleFacebook etc uses SHA-1 hash value for secure connection between their services and clients.
SHA-1 value of debug will be different from SHA-1 value of release build.

How to Obtain SHA1

1) Open Android Studio
2) Click Gradle Menu available on the right side
3) Expand YourProjectName > :app > Tasks > android > signingReport
4) Right Click signingReport and click first option from the menu
Obtain Certificate SHA-1 Fingerprint Using Android Studio


5) SHA1 certificate will be displayed in the window opened at bottom
Obtain Certificate SHA-1 Fingerprint Using Android Studio

No comments:

Post a Comment

RecyclerView in Android with Example

  RecyclerView is a ViewGroup added to the android studio as a successor of the GridView and ListView. It is an improvement on both of them ...