本文介绍了科尔多瓦:如何设置哪些科尔多瓦构建后不会被覆盖特定于平台的config.xml文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用科尔多瓦两个平台iOS和Android。当我改变的东西在我的
I use Cordova with two platforms ios and android. When I change something in my
Project/config.xml
,将被合并到
it will be merged into
Project/platforms/android/res/xml/config.xml
Project/platforms/ios/Project/config.xml
后做的科尔多瓦构建
如何设置,不会被科尔多瓦覆盖特定于平台的设置打造?
推荐答案
定义平台的具体配置平台元素中。
Define your platform specific configuration inside platform elements.
<platform name="android">
<preference name="Fullscreen" value="true" />
...
</platform>
见的底部:http://cordova.apache.org/docs/en/4.0.0/config_ref_index.md.html
如果你使用科尔多瓦的旧版本,可以考虑更新尽可能多的关键问题是固定的。
And if you use an older version of Cordova, consider updating as many critical issues were fixed.
这篇关于科尔多瓦:如何设置哪些科尔多瓦构建后不会被覆盖特定于平台的config.xml文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!