PhoneGap:如何在Config.xml中为iOS设置Build和Version属性?

con*_*ile 10 javascript html5 ios cordova

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">
Run Code Online (Sandbox Code Playgroud)

此属性将版本和构建设置为1.1.0.

有没有办法在config.xml中单独设置版本和内部版本号?

use*_*234 22

<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>
Run Code Online (Sandbox Code Playgroud)

来自https://cordova.apache.org/docs/en/dev/config_ref/index.html#widget.