d0001
d0001

Reputation: 2190

WWHost.exe exception when trying to debug using VS2015 Cordova tools

I get the following exceptions everytime I try to debug a cordova app on Visual Studio 2015. If I close the dom element navigator before the exception is thrown I can continiue normally.

Any ideas?

Unhandled exception at 0x00007ffe68c39bef (mshtml.dll) in WWAHost.exe: 0xC0000005: Access violation reading location 0x0000000000000068.

I tried repairing with no success.

Upvotes: 1

Views: 83

Answers (2)

d0001
d0001

Reputation: 2190

For some reason the following fixed my issue.

  1. Change Target Version to Windows 10
  2. Build.
  3. Change Target Version to Windows 8.1
  4. Clean & Build

I originally had the target Windows version set to Windows 8.1. I am building on Windows 8.1.

It looks like Microsoft fixed this issue by disabling the DOM Navigator on 8.1 since that is what seemed to be causing the problem.

Upvotes: 0

Mike Jones
Mike Jones

Reputation: 320

Are you on Win8.1? My understanding is this is specific to Win8, so if you upgrade to Win10 it should go away. Also, you could Shift+F5 to start app without debugging.

Upvotes: 2

Related Questions