Wp8 app Deployment Error 0x81030110 in the emulator

爷,独闯天下 提交于 2019-12-14 04:19:05

问题


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,

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


回答1:


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>



回答2:


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?



来源:https://stackoverflow.com/questions/17467430/wp8-app-deployment-error-0x81030110-in-the-emulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!