Continuing the discussion from Firebase Dynamic Links not working when app is closed:
add this:
this.firebaseDynamicLinks.getDynamicLink().then(data => {
if (data) {
console.log("Read dynamic link data on app start:", data.deepLink);
} else {
console.log("App wasn't started from a dynamic link");
}
}).catch(e => console.log(e));
1 post - 1 participant