我在从Cordova构建ios时遇到以下错误。 但是XCODE中的一切都运行良好。 注意:我使用2开发帐户,因为我们的应用程序中有1个是实时的。所以在同一台mac机器上有2个账号。我希望这与这个问题无关。
我正在分享错误和从XCode拍摄的证书屏幕
错误讯息:
证书屏幕从Xcode拍摄(一切正常)。
任何有任何线索的人都会帮助我们很多,谢谢。
答案 0 :(得分:0)
我有这个问题,因为我有项目已经预装了插件。这些插件是请求额外的变量(如facebook4插件)。如果您有任何插件请求变量,请先删除它:
ionic cordova rm plugin cordova-plugin-facebook
然后删除您的平台并重新添加
ionic cordova platform rm ios
ionic cordova platform add ios
因为您的插件没有任何问题,所以您的平台将以正确的方式添加
然后ionic cordova build ios
答案 1 :(得分:0)
You need to add this flag :
OR if you have build.json file at the root of your project, you must add this lines:
{
"ios": {
"debug": {
"buildFlag": [
"-UseModernBuildSystem=0"
]
},
"release": {
"buildFlag": [
"-UseModernBuildSystem=0"
]
}
}
}
Hope this will help in the future