Missing Provisioning Profile :Apps must contain a provisioning profile in a file named embedded.mobileprovision

后端 未结 6 1065
渐次进展
渐次进展 2020-12-24 00:40

App is already submitted to App Store from xcode-9 and now I have to update new version.But now xcode is updated i.e.xcode 10.During Validating it shows \'Apps must contain

6条回答
  •  清酒与你
    2020-12-24 01:11

    You can also create a new build.json file at the root of your cordova project, if you don't already have one, and add the following json data. This basically tell the build process for "ios" to use the legacy build system. It will automatically add the build flags in the build.json file to your build command e.g. cordova build ios --prod will also run as though it was typed as cordova build ios --prod --buildFlag="-UseModernBuildSystem=0".

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

提交回复
热议问题