iOS应用的版本和内部版本号。当使用PhoneGap / Cordova项目的config.xml时,我可以设置
<widget id="bundlename" version="1.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
此属性将版本和版本设置为1.1.0。
有没有办法在config.xml中单独设置版本号和内部版本号?
答案 0 :(得分:21)
<widget id="io.cordova.hellocordova" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
</widget>
<!-- Android -->
<widget versionCode="0.1.3">
</widget>
<!-- iOS -->
<widget CFBundleVersion="0.1.3">
</widget>
<!-- Windows -->
<widget packageVersion="0.1.3">
</widget>
来自https://cordova.apache.org/docs/en/dev/config_ref/index.html#widget。