问题
Im trying to publish my app through application loader, but I keep on getting this error. I've tried this solution however I still get the same error.
Any suggestions would be appreciated.
回答1:
I found out the build I was trying to upload was archived in Xcode beta 6 :/ Upgrading to the GM seed solved my problem. Also make sure Embedded Content contains swift code
is set to "NO" in your build settings for your extension and set to "YES" in your build settings for your containing app.
回答2:
Just to add to this. The Embedded Content contains swift code
worked for me as well. Additionally, I had an extension and I was linking to frameworks in that extension. I was also copying the frameworks to the extension, aka creating a Frameworks
folder. Because that's what you need to do right? Well, I was definitely wrong. I guess the extension's search path knows to look in the containing app's Framework's folder via the Extension Target's Runpath Search Paths setting in Build Settings
@executable_path/../../Frameworks
So what was unclear to me, and is now clear is that you don't copy the Frameworks (Copy Build Phase) into the extension. It uses them from the containing application. Which is also why, if you want to use your Frameworks in your extension you need to be sure that the Build Settings > Require Only App-Extension-Safe API is set to Yes
回答3:
For me, none of the above solutions worked, but in the end this GH issue gave a hint.
If you're using CocoaPods, you might consider deleting the Embed frameworks build phase on the problematic target (the extension), this fixed the problem for me.
回答4:
For the app, I had to set:
Embedded Content Contains Swift Code: YES
and for the extension:
Embedded Content Contains Swift Code: NO
回答5:
I face this issue in Xcode - 11. In my project I have custom framework which was add as Embed & sign, and it has to be Do not embed. See the picture below.
来源:https://stackoverflow.com/questions/25880134/invalid-bundle-contains-disallowed-file-frameworks