错误:DEP0001:意外错误:Appx包';的清单无效.(HRESULT:0x80080204中出现异常)
本文关键字:错误 HRESULT 无效 异常 0x80080204 Appx 意外 DEP0001 单无效 | 更新日期: 2023-09-27 18:00:52
当我在手机8.1上部署应用程序时,我收到了这个错误
错误:DEP0001:不应出现错误:Appx包的清单为无效的(HRESULT:0x80080204的异常(
我的appmanifest页面看起来像这样。有人帮我解决这个错误。
提前谢谢。
<?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>
感谢所有试图回答我的人。当我将手机从windows 8.1更新到windows 10预览时,问题得到了解决