I know this question is asked multiple times on SO. But none of answers worked for me in iOS 12
I know using branch.io, I can do this but I don't want to use any paid service
What I have tried
window.location.replace('myapp://');
const timer = setTimeout(() => {
window.location.replace('appstorelink://);
}, 1000);
But it shows an ugly popup that says safari can not open this page
if app is not installed. After clicking on 'Ok'
button it redirects to app store
Is there any workaround to stop or avoid the popup?