我正在使用cordova 为Windows 10 构建我的sencha touch 应用程序。对于 iOS 和 Android ,cordova 文档很好地解释了如何配置各种图标和闪屏。但是对于 Windows,该示例显示的图标很少,我尝试像示例中那样配置它们,但是当我使用 Visual Studio 打开 Windows 10 构建的解决方案时,我看到所有图标都是默认的科尔多瓦图标,而不是那些图标我已经配置了。
我在 config.xml 中添加了这些行
<platform name="wp8">
<splash src="../resources/splashscreen/wp8/SplashScreenImage.png" width="768" height="1280"/>
<icon src="../resources/icons/wp8/ApplicationIcon.png" width="99" height="99" />
<!-- tile image -->
<icon src="../resources/icons/wp8/Background.png" width="159" height="159" />
</platform>
<platform name="windows8">
<splash src="../resources/splashscreen/windows8/SplashScreenImage.png" width="620" height="300"/>
<icon src="../resources/icons/windows8/logo.png" width="150" height="150" />
<icon src="../resources/icons/windows8/smalllogo.png" width="30" height="30" />
<icon src="../resources/icons/windows8/storelogo.png" width="50" height="50" />
</platform>
但是在visual studio中,我看到了这些图标,所有图标都取自cordova默认图标,带有“droid”的图标:
有没有办法在 config.xml 中配置 Windows 10 图标?在科尔多瓦文档中,我找不到任何关于此的内容。
提前致谢