I am a beginner android developer working on my first project. I unable to find the debug SHA 1 key through the general procedure
Asked
Modified 3 years, 10 months ago
Viewed 4k times
Part of Mobile Development and Google Cloud Collectives
2 Answers
- Go to Android Studio
- Click on Gradle(Right Most of the Screen)
- Click your project name and expand it.
- Then click on Task -> android ->Signing Report
- Android Studio will generate MD1, SHA-1, and SHA-256 for you.
3 Comments
Ritesh Nayak
See the image i.sstatic.net/U0rBy.png unable to find that
dennisrufigill
Use this link to open gradle task, and then follow above steps. programmersought.com/article/82186867935
Dark
@PRORITESH I had the same problem. Go to Preferences | Experimental and switch off "Do not build Gradle task list during Gradle sync"
Yeah I was also facing this problem with the new Android Studio 4.2 but found the solution eventually
Put this command in the terminal of android studio and hit enter
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android 

