I get the error message as stated above. Internet search shows me that this error can be thrown when an error occurs in a javascript:
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/b8956609-a01c-4e3b-b816-21fc340e9569/cordova-app-a-first-chance-exception-of-type-systemsystemexception-occurred-in?forum=wpdevelop
Now, no error occurs in the browser; only in the app. I have dozens of javascript files, 3rd party javascript libraries and so on, so putting try/catch blocks around virtually everything would cost weeks. I tried to put one try/catch block around the content
of every file, but it seems that this won't catch errors thrown asynchronous inside functions, like through setTimeout or events.
Is there an easy way to get the file, line and column of the JavaScript error that is effectively causing the aforementioned exception?