In Visual Studio 2015 Update 3, I created a JavaScript -> Windows -> Windows 8 -> Windows Phone -> Blank App (Windows Phone) project JavaScript -> Windows -> Windows 8 -> Windows Phone -> Blank App (Windows Phone) . Then I changed default.html to include the <select> element:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>App1</title> <link href="/css/ui-themed.css" rel="stylesheet" /> <script src="//Microsoft.Phone.WinJS.2.1/js/base.js"></script> <script src="//Microsoft.Phone.WinJS.2.1/js/ui.js"></script> <link href="/css/default.css" rel="stylesheet" /> <script src="/js/default.js"></script> </head> <body class="phone"> <select> <option>Val</option> <option>Val</option> <option>Val</option> <option>Val</option> </select> </body> </html>
When you click on a selection item, the application crashes Windows Mobile 10 with:
'WWAHost.exe' (Script): Loaded 'Script Code (MSAppHost/2.0)'. The program '[3976] WWAHost.exe' has exited with code -1073741819 (0xc0000005) 'Access violation'.
This happens on devices and the Windows Mobile 10 emulator. Windows Phone 8 does not seem to have this problem. Until recently, this worked fine on Windows Mobile 10. Perhaps the update caused this? Interestingly, Cordoba and UWP are also affected. Is the solution still known?
javascript cordova uwp windows-10-mobile
Roel van uden
source share