2015-07-03 186 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預覽版時,問題得到解決。

相關問題