, function (e) {
e.preventDefault();

const ua = navigator.userAgent || navigator.vendor || window.opera;
const isAndroid = /android/i.test(ua);
const isIOS = /iPad|iPhone|iPod/.test(ua) && !window.MSStream;

const appUrl = ‘evolv://’;
const iosStore = ‘https://apps.apple.com/us/app/evolv-rewards/id6743147499’;
const androidStore = ‘https://play.google.com/store/apps/details?id=com.tlc.clubdd’;

document.getElementById(‘status’).textContent = ‘Trying to open the app…’;

// Try custom scheme
window.location.href = appUrl;

// Fallback after delay
setTimeout(function () {
document.getElementById(‘status’).textContent =
‘App did not open. You can download it below.’;
if (isIOS) {
window.location.href = iosStore;
} else if (isAndroid) {
window.location.href = androidStore;
}
}, 1500);
});