Windows Phone crashes in Release

0

I have made a Windows Phone application with Xamarin and Mvvmcross. When debugging the application it works perfectly. So the application was uploaded to the app store. but when the application got downloaded and run from the store it shut down immidiately after the icon gets clicked. So now i found out that the application does not work when running it on a device in release mode. (on a emulator it works fine).

First i got this exception

Error 1 Error : DEP6810 : MdilXapCompile.exe failed with error code 1004. See log file '~project.WinPhone\obj\Release\MDIL\MDILXapCompileLog.txt' for more details.

in this file there was an error

Compile filter argument specified non-existent file: ~project.WinPhone\obj\Release\MSIL\nl-NL\project.resources.dll Invalid argument

This error made it unable to deploy the application to the device in release mode. I still have no idea why i got this error and how i am supposed to solve it. But i found a form of workaround by creating a 'nl-NL' map in the MSIL and adding the resource.dll to it. This made it able to deploy the application.

But when deploying the application in this state it crashed immediately. with the native debugger i could get it to break. it gave me this exception

Unhandled exception at 0x775E062F (COMBASE.DLL) in project.WinPhone.exe: 0xC000027B: An application-internal exception has occurred (parameters: 0x04F80AB8, 0x00000006).

Clicking on the Disassembly it had it's pointer on this line

77808534 bl SignalStartWerSvc (777FED78h)

It probably has something to do with my localizedresources, where i define some .resx files for filling the app with text. I did find out that this is causing me some problem with WP but i am not sure what i could do against it, i cannot use .resw files as have been suggested.

Has anyone ever had this sort of issue before and does anyone know how to solve it? It is keeping me from placing a working application on the app store, which is really frustrating. Thank you in advance

visual-studio
windows-phone-8.1
xamarin-forms
asked on Stack Overflow Jan 19, 2016 by StijnvanGaal • edited Jan 20, 2016 by StijnvanGaal

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0