Android Firebase Dynamic Links setup - SHA-1 not recognized

家住魔仙堡 提交于 2019-11-29 17:54:09

You need to add the SHA1 and SHA256 from your production certificate to firebase console

  • Log into firebase console
  • Select your firebase project, click on Configuration
  • Find your Android App, then go to SHA certificate fingerprints and add both the SHA1 and SHA256 fingerprints for your production certificate.

To obtain the SHA1 and SHA256:

keytool -list -v -keystore your_release_certificate.jks

You should also add your debug SHA1 certificate, go to your project folder and execute

./gradlew signingReport

your debug SHA1 (and all of them) will look like this:

8B:5F:27:7C:A6:59:9A:7C:BB:EF:2F:8B:17:A2:F6:1D:31:3B:73:E6

well, after doing NOTHING but trying again about 12 hours later, it's accepting the SHA-1. so i seems like firebase needs some time to process adding the SHA-1. IT WOULD BE NICE IF THEY INDICATED THAT WITH THEIR RED WARNING OF "Please add SHA-1 for this Android app". so annoying!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!