如何更改Windows Universal App中的硬件要求?

时间:2015-08-12 14:03:25

标签: windows universal

我开发了一个Windows(10)通用应用程序并部署到商店(see here)。令我惊讶的是,人们无法对其进行评分,这就是出于这个原因:"此应用需要您的设备无法使用的硬件,这会阻碍应用性能。评级和评论已关闭。"

在Store的页面底部显示"硬件要求:鼠标,触摸"。我没有在任何地方配置,我无法找到改变它的位置。我用编辑器检查了appmanifest,没有标签"硬件要求"。

这是我的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="xxx" Publisher="CN=xxx" Version="1.1.10.0" />
    <mp:PhoneIdentity PhoneProductId="xxxx" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
      <Properties>
        <DisplayName>StudioBrussel</DisplayName>
        <PublisherDisplayName>BrechtB</PublisherDisplayName>
         <Logo>Assets\StoreLogo.png</Logo>
      </Properties>
      <Dependencies>
        <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
      </Dependencies>
      <Resources>
        <Resource Language="x-generate" />
      </Resources>
      <Applications>
        <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="StudioBrussel.App">
        <uap:VisualElements DisplayName="Studio Brussel" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Listen to Studio Brussels with this app! Luister naar Studio Brussel met deze app! Écoutez Studio Brussel avec cette app!" BackgroundColor="#cb030b">
          <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
          </uap:DefaultTile>
          <uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="#cb030b" />
          <uap:InitialRotationPreference>
            <uap:Rotation Preference="portrait" />
            <uap:Rotation Preference="landscape" />
          <uap:Rotation Preference="portraitFlipped" />
        <uap:Rotation Preference="landscapeFlipped" />
      </uap:InitialRotationPreference>
    </uap:VisualElements>
    <Extensions>
      <Extension Category="windows.backgroundTasks" EntryPoint="StudioBrussel.App">
        <BackgroundTasks>
          <Task Type="audio" />
        </BackgroundTasks>
       </Extension>
     </Extensions>
   </Application>
  </Applications>
 <Capabilities>
   <Capability Name="internetClient" />
 </Capabilities>
</Package>

有没有人知道如何更改它,或者这是商店错误?

1 个答案:

答案 0 :(得分:0)

我找到了它,显然是&#34;硬件偏好&#34;不再是appryifest,但在提交时的仪表板中的dev.windows.com =&gt; app properties =&gt;硬件偏好。