(function () {
const ua = navigator.userAgent.toLowerCase();
// Android uygulama (WebView) içindeysek DUR
if (ua.includes("android") && ua.includes("wv")) {
console.log("ANDROID APP – ENGELLENDİ");
return;
}
// 🔽 Buradan sonrası sadece WEB için çalışır
console.log("Web ortamı – kod çalışıyor");
// senin mevcut kodların...
})();