how to get release sha1 key in android studio code example

Example 1: get sha key android

keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

Example 2: how to get sha 1 in android studio

keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

Example 3: sha1 release key android

keytool -list -v -keystore {keystore_name} -alias {alias_name}

Example 4: sha1 release key android

keystore_name mean location of the release key file and alias will be key by default

Tags:

Java Example