I am developing a webView based android application and was trying to capture the touch events. however it is not working and i saw this message in the log:
I fixed this issue with adding
document.addEventListener( 'touchstart', function(e){ onStart(e); }, false ); function onStart ( touchEvent ) { if( navigator.userAgent.match(/Android/i) ) { touchEvent.preventDefault(); } }