我们想自动化Cordova应用程序的iOS版本。
因此,我需要在config.xml中设置CFBundleLocalizations
和MinimumOSVersion
我尝试使用以下代码:
<edit-config file="*-Info.plist" mode="merge" target="MinimumOSVersion">
<string>11</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="CFBundleLocalizations">
<array>
<string>Germany</string>
</array>
</edit-config>
生成的* -Info.plist包含两个参数,但是当我打开Xcode时未应用设置。
搜索解决方案后,我在Apple开发人员帮助中找到了Don’t specify MinimumOSVersion in the Info.plist file for apps built in Xcode. It uses the value of the Deployment Target in the General settings pane.
但是我找不到用科尔多瓦为general settings pane
设置值的方法。
有人提示如何解决该问题吗?
[更新]
我认为(现在)更好的方法是在使用xcodebuild
构建应用程序时设置所需的值,而我试图弄清楚该怎么做。任何帮助表示赞赏;)