105

I'm trying to create a dynamic link in Firebase, when I'm selecting the android app, it shows an error saying "Add SHA-1 to this android app", I've already added a credential, but I'm not sure how exactly do I "add SHA-1 to the app"

How is this done?

Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734
John Sardinha
  • 3,328
  • 5
  • 24
  • 51

17 Answers17

178

SHA-1 generation in android studio:

change firebase project setting

Press add fingerprint button


  1. Select Gradle in android studio from right panel

  2. Select Your App

  3. In Tasks -> android-> signingReport

Double click signingReport.

How to get sha1 fingerprint


You will find the SHA-1 fingerprint in the "Gradle Console"

Add this SHA-1 fingerprint in firebase console

Add SHA1 fingerprint

ABcDexter
  • 2,311
  • 4
  • 27
  • 37
Damini Mehra
  • 3,214
  • 3
  • 12
  • 24
158

If you are using Google Play App Signing you need to use the SHA1 from google play since Google will replace your release signing key with the one on googles server

enter image description here

humazed
  • 70,785
  • 32
  • 93
  • 133
  • 18
    This needs to be a lot higher. I totally missed that my key is just for uploading and then google resigns it on its own. Took me better part of a morning to realize this – somerandomusername Jul 04 '18 at 07:57
  • 3
    Really helpful! The Google App Signing SHA1 has to be added to the list of SHA1's on your services. – Lucy Jul 07 '18 at 14:11
  • 5
    Lifesaver! This should be highlighted in the [Google App Bundle documentation](https://support.google.com/googleplay/android-developer/answer/7384423). They mention it under **Tips and Best Practices** at the bottom of the page. However, it is unclear what is required and how to implement. – Adam Hurwitz Oct 01 '18 at 11:05
  • Had to use upload key certificate's SHA-1 and SHA-256. Thanks btw. – mdhz Oct 31 '20 at 11:46
  • Thanks for this. This really saved me a ton of hours!! – Xander Selorm Sep 10 '21 at 23:18
  • This is much more relevant, in my opinion, in 2021 than the accepted answer. – Stefanos Chrs Oct 29 '21 at 06:03
49

Alternatively you can use command line to get your SHA-1 fingerprint:

for your debug certificate you should use:

keytool -list -v -keystore C:\Users\user\.android\debug.keystore -alias androiddebugkey -storepass android -keypass android

you should change "c:\Users\user" with the path to your windows user directory

if you want to get the production SHA-1 for your own certificate, replace "C:\Users\user\.android\debug.keystore" with your custom KeyStore path and use your KeystorePass and Keypass instead of android/android.

Than declare the SHA-1 fingerprints you get to your firebase console as Damini said

Dhruv Tyagi
  • 803
  • 1
  • 8
  • 27
gbaccetta
  • 4,120
  • 1
  • 16
  • 29
  • 1
    You need to CD to the java bin folder for keytool to work. For me it was, `C:\Program Files\Android\jdk\microsoft_dist_openjdk_1.8.0.25\bin` although you might have a general java edition installed directly in `C:\Program Files\Java\...` – Kind Contributor Apr 22 '19 at 05:31
26

MacOS just paste in the Terminal:

keytool -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore -storepass android -keypass android
norbDEV
  • 4,217
  • 2
  • 31
  • 25
22

for Updated Android Studio(12 May 2021)

  1. Click on Gradle right side
  2. Click on the elephant icon and type the command
gradle signingReport

press Enter

Now, you will see BUILD SUCCESSFUL in the Run window that you can open from bottom just scroll that window upward and you will find your SHA1 key there. Add this key to firebase

  1. In your Project settings, go to the Your apps card.
  2. Select the Firebase Android app to which you want to add a SHA fingerprint.
  3. Click Add fingerprint.
  4. Enter or paste the SHA fingerprint, then click Save.

At last, while running your App please check you change the run configuration to app else only the signingReport Task would be running again and again.

Shubham Garg
  • 703
  • 5
  • 12
14

If you are using Google Play App Signing, you don't need to add your SHA-1 keys manually, just login into Firebase go into "project settings"->"integration" and press a button to link Google Play with firebase, SHA-1 will be added automatically.

Torello
  • 725
  • 10
  • 13
  • As we know its totally fine to link Firebase and Google Play, this is a super easy way to get rid of the SHA generation and integration steps. Within a minute i was able to make my Live app's google sign in bug go away. Thanks. – mohit kejriwal Jun 14 '20 at 06:42
8

Just In case: while using the command line to generate the SHA1 fingerprint, be careful while specifying the folder path. If your User Name or android folder path has a space, you should add two double quotes as below:

keytool -list -v -keystore "C:\Users\User Name\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
Gomez NL
  • 842
  • 8
  • 12
6

Try pasting this code in CMD:

keytool -list -v -alias androiddebugkey -keystore  %USERPROFILE%\.android\debug.keystore
Alexandre Tranchant
  • 4,074
  • 4
  • 35
  • 63
5

On Windows, open the Command Prompt program. You can do this by going to the Start menu

  keytool -exportcert -list -v -alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore

On Mac/Linux, open the Terminal and paste

   keytool -exportcert -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore
5

For linux Ubuntu Open Terminal and Write :-

keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
Mohammad Sommakia
  • 1,582
  • 2
  • 13
  • 44
Predator_Shek
  • 61
  • 1
  • 2
4

linux os terminal run this :

  keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass androi
Dilshan Dilip
  • 651
  • 5
  • 9
4

Run this command from your android directory.

./gradlew signingReport 

If you're not in the android directory already, run this instead:

cd android && ./gradlew signingReport
iDecode
  • 12,616
  • 7
  • 58
  • 106
3

when I generate sha1 key using android studio

Gradle -> Tasks -> android-> signingReport and double click

That sha1 key is worked in debug mode but not worked when i build singed APK

so I generated sha 1 key using cmd it work

  • go to java\jdk version\ bin folder

example

C:\>cd C:\Program Files\Java\jdk1.8.0_121\bin

and type

keytool -exportcert  -keystore {path of sign jks key } -list -v

example

keytool -exportcert  -keystore F:\testkey\damithk.jks -list -v
damith alahakoon
  • 270
  • 3
  • 14
1

Instead Of Writing Command, You can Follow the Following Steps For Copy SHA

  1. Open Android Studio
  2. Open Your Project
  3. Click on Gradle (From Right Side Panel, you will see Gradle Bar)
  4. Click on Refresh (Click on Refresh from Gradle Bar, you will see List Gradle scripts of your Project)
  5. Click on Your Project (Your Project Name form List)
  6. Click on Tasks/Android
  7. Double Click on signingReport (You will get SHA1 and MD5 in Run Bar).
iDecode
  • 12,616
  • 7
  • 58
  • 106
yash sanghavi
  • 337
  • 2
  • 5
0

Open a terminal and run the keytool utility provided with Java to get the SHA-1 fingerprint of the certificate. You should get both the release and debug certificate fingerprints.

To get the release certificate fingerprint: keytool -exportcert -list -v \ -alias -keystore

0

Easiest and the best option, just open root directory in Command prompt and run "gradlew signingReport" this command.

Harjinder Bains
  • 306
  • 3
  • 6
0

To get the release certificate fingerprint, follow this easy detailed step.

Right click on your

android folder

add new file

name it 'key.properties'. (without the single quotation of course)

add this lines

storePassword=any unique password

keyPassword=re-enter unique password

keyAlias=upload

storeFile= we'll put this later on

On your terminal, add the following and Continue.

On Mac/Linux

keytool -genkey -v -keystore ~/upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias upload

On windows

keytool -genkey -v -keystore c:\Users\USER_NAME\upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload

On password, enter the unique store password you put. On certificate information, just leave it blank and Continue. At the end, type yes to confirm your information and Continue.

Go to the specified path where your upload-keystore.jks file is put, copy the file or move it to your project. Specifically under this folder.

android/app

Go back to your key.properties file and specify where the upload-keystore.jks path is under storeFile. i.e.

../app/upload-keystore.jks

Go to

android/app/build.gradle

On the file, click

Open for Editing in Android Studio

New Window

On the new window terminal, add

./gradlew signingReport

and Continue.

Search for the results where both the variant and the config are

release

Under that, that's your release keys.

dev.bojack
  • 436
  • 2
  • 3