如何更改 Ionic build ios 命令的默认设置?

How to change default settings of Ionic build ios command?

我已经设置了一个 gulp 进程来部署我的离子应用程序。使用 gulp 进程 I 运行 ionic build ios 进行构建或 cordova build ios --device 生成 ipa,但它使我的 build/IPA 始终使用默认设置,这导致 IPA 大小增加(几乎 10-12 MB)并且需要更多时间 upload/download 到 iTunes,例如

我们可以通过XCode更改设置,但我想在命令行上负责所有这些设置。有什么办法可以做到这一点吗?或者是否有任何带有此类参数的命令?

请帮忙..!!

请查看这篇文章。它具有与主要由 config.xml.

处理的 cordova 项目相关的所有配置

https://cordova.apache.org/docs/en/latest/config_ref/

<preference name="deployment-target" value="7.1.2" />

也参考这个answer and

此致。