Firebase dynamic link always goes to app store URL even if the app is installed

时间秒杀一切 提交于 2019-11-30 21:18:24

Edited the link through firebase console. With the 'Skip the app preview page' enabled and 'Use a custom scheme when universal links aren't supported' disabled I was always redirected to the app store.

The solution for me was to enable both universal links and a custom scheme.

Can't say why, but maybe it will help someone.

I faced the exact same problem. To work around this, I give up href attribute and use onclick on <a/>

<a onclick="location.href=https://somedynamiclink.url">Dynamic Link</a>

Please note, no href attribute on a tag.

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