Reputation: 788
I have loaded all the DLLs in the project and my code breaks when I want from the WP8 App to create an object that is defined in my WinRT component (that calls other native libraries).
amy I missing something imporant ?
Thanks
Upvotes: 2
Views: 943
Reputation: 9604
No definitive answer, just some ideas to try if you haven't already.
Have you got any warnings from the build? In particular you need to watch that the C++/CX namespace and .winmd file name are compatible (see this SO question for details).
Have you tried using the Native Debugger?
Open up your .XAP file from the build directory using any ZIP packaging tool (you could for example rename it to .zip and use Windows Explorer) - are all the DLLs you expect packaged up correctly?
Upvotes: 1