我需要通過cordova插件使用cmd行更新Windows 10應用程序的package.appmanifest。 下面是我在plugin.xml中的代碼片斷,它應該更新appmanifest,但不起作用。更新appmanifest功能,來自cordova插件窗口的視覺元素10
<config-file target="package.appxmanifest" parent="/Package/Capabilities">
<DeviceCapability Name="webcam"/>
<DeviceCapability Name="microphone"/>
</config-file>
Windows版本:4.4.3
科爾多瓦版本:6.4.0
也請讓我知道如何更改應用程序圖標?我試過以下,但也不起作用。
<config-file target="package.appxmanifest" parent="/Package/Applications/Application">
<uap:VisualElements
DisplayName="MyApp"
Description="My description"
BackgroundColor="#464646"
Square150x150Logo="images\Square150x150Logo.png"
Square44x44Logo="images\Square44x44Logo.png">
<uap:SplashScreen Image="images\splashscreen.png" />
<uap:DefaultTile ShortName="MyAppName"
Square310x310Logo="images\Square310x310Logo.png"
Square71x71Logo="images\Square71x71Logo.png"
Wide310x150Logo="images\Wide310x150Logo.png" />
</uap:VisualElements>
</config-file>
更新:
我也試圖與把目標作爲目標= 「package.windows10.appxmanifest」,並且也沒有工作。
嗨,Elvis Xia,我在正確的位置配置了文件。但是我的appxmanifest文件仍然沒有更新。我在platform \ windows \裏有package.windows.appxmanifest,package.phone.appxmanifest和package.windows10.appxmanifest,但沒有package.appxmanifest。我錯過了什麼嗎? –
這些文件是正確的,奇怪的是清單文件沒有更新。你能否檢查插件是否正確添加,並在''config.xml'文件中引用,例如' ' –
是的插件已安裝。在config.xml中,它就像: ' ' –