SHA-1: How to generate SHA-1 and SHA-256 key with Android Studio in under 2 mins with actual code?

preview_player
Показать описание
//required code -- start

signingConfigs {
config {
keyAlias 'math'
keyPassword 'YOUR PASSWORD'
storePassword 'YOUR PASSWORD'
}
}

buildTypes {
release {
minifyEnabled false
}
debug {
}
}

//required code -- end

Video Content helps to answer these questions also:
1. How to change debug SHA-1 key?
2. How to keep the same SHA-1 key/Keystore for both debug and release an app?
3. How to get SHA-1 key for google sign-in?
4. How to get SHA-1 key for the release keystore?
5. How to get MD5 key for the keystore?
6. How to create a new Keystore file?

I have made a video on generating SHA-1 and SHA-256 key with Android Studio in the easiest and shortest way possible. I have tried to make it as simple and short as possible.
Please do give your valuable feedback and raise your queries down below in the comment section!
Cheers!

Рекомендации по теме
Комментарии
Автор

Nice, Keep it bro there's build variant direct we don't even required add code but it is safe way !!

rushichavan
Автор

But how to generate sha1 in Ubuntu without android studio

lottylone
Автор

Video Content helps to answer these questions also:
1. How to change debug SHA-1 key?
2. How to keep the same SHA-1 key/Keystore for both debug and release an app?
3. How to get SHA-1 key for google sign-in?
4. How to get SHA-1 key for the release keystore?
5. How to get MD5 key for the keystore?
6. How to create a new Keystore file?

appringer