2015-07-03 175 views
1

母鸡我部署我的应用程序在手机上8.1我收到此错误错误:DEP0001:意外的错误:Appx包的清单无效。 (异常来自HRESULT:0x80080204)

Error : DEP0001 : Un expected Error: The Appx package's manifest is invalid. (Exception from HRESULT: 0x80080204)

我appmanifest页lookslike this.Someone帮我解决这个错误。

在此先感谢。

<?xml version="1.0" encoding="utf-8"?> 

    <Package 
     xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 
     xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" 
     xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 
     IgnorableNamespaces="uap mp"> 

     <Identity 
     Name="a9b39f41-405f-4f3c-b952-b1074c374308" 
     Publisher="CN=jk" 
     Version="1.0.0.0" /> 

     <mp:PhoneIdentity PhoneProductId="a9b39f41-405f-4f3c-b952-b1074c374308" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> 

     <Properties> 
     <DisplayName>networking2</DisplayName> 
     <PublisherDisplayName>jk</PublisherDisplayName> 
     <Logo>Assets\StoreLogo.png</Logo> 
     </Properties> 

     <Dependencies> 
     <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10069.0" MaxVersionTested="10.0.10069.0" /> 
     </Dependencies> 

     <Resources> 
     <Resource Language="x-generate"/> 
     </Resources> 

     <Applications> 
     <Application Id="App" 
      Executable="$targetnametoken$.exe" 
      EntryPoint="networking2.App"> 
      <uap:VisualElements 
      DisplayName="networking2" 
      Square150x150Logo="Assets\Logo.png" 
      Square44x44Logo="Assets\SmallLogo.png" 
      Description="networking2" 
      BackgroundColor="#464646"> 
      <uap:SplashScreen Image="Assets\SplashScreen.png" /> 
      </uap:VisualElements> 
     </Application> 
     </Applications> 

     <Capabilities> 
     <Capability Name="internetClient" /> 
     </Capabilities> 
    </Package> 
+0

感谢所有试图回答我的人。当我将手机从Windows 8.1更新到Windows 10预览版时,问题得到解决。 – djkp

回答

0

感谢所有试图回答我的人。当我将手机从Windows 8.1更新到Windows 10预览版时,问题得到解决。

相关问题