Wp8 app Deployment Error 0x81030110 in the emulato

2019-07-15 16:58发布

I was developed wp8 app and signed my app with enterprise certificate using powershell.After successfully signed and i was trying to deploy my signed app in emulator,but i was received the error, enter image description here

when i googled about this error they stated that Failed to install the application. Runtime error has occurred. Capabilities WMAppManifest.xml file located in the attribute content is incorrect. and they referred this site link.but i was not able to found the proper solution.kindly help me to get rid of this problem

2条回答
Luminary・发光体
2楼-- · 2019-07-15 17:23

After having wasted some time trying to solve this problem I eventually solved it by just keeping only those capabilities which I am actually using, no less, no more! In my case I only needed internet permission so here is how the capabilities part of my WMAppManifest.xml looks now

<Capabilities>
      <Capability Name="ID_CAP_NETWORKING" />
</Capabilities>
查看更多
SAY GOODBYE
3楼-- · 2019-07-15 17:36

I got the same error a few days ago when I had the “ID_CAP_GAMERSERVICES” checked for an APP that did not require the manifest. Have you tried un-checking all capabilities that you are not exposing in your app? Capabilities such as “ID_CAP_INTEROPSERVICES”, “ID_CAP_PHONEDIALER” etc. are included by default in a windows phone 8 project.

If this does not resolve the issue perhaps post your app’s manifest file capability section?

查看更多
登录 后发表回答