Guys, recently, we found out which our app can't play ads anymore. A error show up is "Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode".
So, Obviously, version 3.335_0 use Es6 let Syntax, causes low chrome have problem, please use var Syntax.
let iframeBridge;
// Initialize the bridge on script execution to handle connecting when embedded.
window.addEventListener('load', function() {
iframeBridge = new ima.IframeBridge();
},
false); // useCapture
thanks a lot.