I am new to phonegap and android development. May I know how can I debug javascript error on the emulator? I have heard about ADB may I know how can I use and install it on wind
The best solution to catch exceptions and show in your console is this code:
window.onerror = function(msg, uri, line) { console.log(msg + uri + line); }