Xcode 7.0.1 - Invalid Swift Support - The SwiftSupport folder is missing.

前端 未结 2 519
迷失自我
迷失自我 2021-02-03 11:21

I try to publish on AppStore an App that contains Swift 2.0 files, but I receive the following email:

Dear developer,

We have discovered one o

2条回答
  •  鱼传尺愫
    2021-02-03 12:03

    To be safe, all components of your app should be built with the same version of Xcode and the Swift compiler to ensure that they work together.

    I think you need to do a pod clean and install. I reckon one of your swift pods was created on a old version of Xcode, you updated Xcode and then tried to do a submission to the app store.

    Read the apple swift blog about binary compatibility and frameworks

    You will also want to specify that your embedded content contains swift in the build settings:

    EMBEDDED_CONTENT_CONTAINS_SWIFT
    

    Enable this setting to indicate that content embedded in a target's product contains Swift code, so that the standard Swift libraries can be included in the product.

提交回复
热议问题