You Qi
You Qi

Reputation: 9211

AppLink Configuration for Firebase Dynamic Link

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

Upvotes: 3

Views: 1933

Answers (1)

Lucas Garcez
Lucas Garcez

Reputation: 407

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

Upvotes: 6

Related Questions