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

前端 未结 2 503
迷失自我
迷失自我 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 11:57

    I just resolved an instance of this problem with Apple support.

    The problem turned out to be some junk files were being included in the IPA file from my CI/CD system. In particular I had a .gitkeep file which came from a rsync command, and a .DS_Store file which I put there indirectly by poking around with Finder.

    The fix was to tighten the rsync command I was using to import some frameworks from Jenkins to exclude .gitkeep, .DS_Store and any other dot-files.

    YMMV. The support engineer agreed that it was a confusing error message.

提交回复
热议问题