5

I'm using Android studio to help me build a release SHA1 certificate, by going over to

  • Gradle settings at the top right
  • Navigate upto signingReport with the gear icon
  • Right clicking then running it

And it produces a debug SHA1 certificate, as you can see below (Variant):

enter image description here

how can I generate a release certificate using the same tool, without using the command line

shizhen
  • 12,251
  • 9
  • 52
  • 88
Boron
  • 99
  • 10
  • 34

1 Answers1

4

Select your buildVariant to release types. Then go to Project structure -> Default config -> SigninConfig -> and then select your release signinConfig for Release SHA1 and debug signinConfig for Debug SHA1.

enter image description here

Gk Mohammad Emon
  • 6,084
  • 3
  • 42
  • 42
shizhen
  • 12,251
  • 9
  • 52
  • 88