2

How can I modify the assetlinks.json if I'm using the firebase provided domain for my dynamic links? It's accessible and currently it's returning empty array:

https://setel.page.link/.well-known/assetlinks.json

KENdi
  • 7,576
  • 2
  • 16
  • 31
You Qi
  • 8,353
  • 8
  • 50
  • 68
  • You shouldn't need to modify it to get a non-empty response. That said, I'm having the same problem. Did you do everything described in https://www.youtube.com/watch?v=zra2DCd0DnY ? – FractalBob Sep 20 '19 at 11:37

1 Answers1

6

Firebase Dynamic links requires using a SHA-256 fingerprint instead of a SHA-1 fingerprint. You can add on firebase console. On Firebase Project Settings select your app and click on "Add fingerprint".

To see the SHA-256 from your keystore you can use this command:

keytool -list -v -keystore {keystore_name} -alias {alias_name}

You can see more details about the SHA on Firecasts - Introdution to Firebase on Android

So it may take a few minutes to your assetlinks.json to update on https://the_name_you_chose.page.link/.well-known/assetlinks.json

Lucas Garcez
  • 398
  • 6
  • 13