Ionic ios build fails, error archive not found

后端 未结 6 750
礼貌的吻别
礼貌的吻别 2020-12-07 15:44

I\'ve been trying to figure this out, but there doesn\'t seem to be any light at the end of the tunnel, thus trying it here...hope you can help.

I have an Ionic proj

6条回答
  •  感动是毒
    2020-12-07 16:09

    An Example for a working build.json (to place into your cordova / ionic project root directory) is the following content:

     {
      "ios": {
        "debug": {
          "buildFlag": [
            "-UseModernBuildSystem=0"
          ]
        },
        "release": {
          "buildFlag": [
            "-UseModernBuildSystem=0"
          ]
        }
      }
    }
    

    For more parameters about build.json see also cordova doc: https://cordova.apache.org/docs/en/latest/guide/platforms/ios/

提交回复
热议问题