Jarryd Baillie
Jarryd Baillie

Reputation: 473

Invalid bundle... contains disallowed file 'frameworks'

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.

Upvotes: 8

Views: 10967

Answers (5)

Ajumal
Ajumal

Reputation: 1048

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.enter image description here

Upvotes: 4

Finn Gaida
Finn Gaida

Reputation: 4040

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.

Upvotes: 2

AJ Venturella
AJ Venturella

Reputation: 4922

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

Upvotes: 7

Pawel Molodkin
Pawel Molodkin

Reputation: 132

For the app, I had to set:

Embedded Content Contains Swift Code: YES

and for the extension:

Embedded Content Contains Swift Code: NO

Upvotes: 1

Jarryd Baillie
Jarryd Baillie

Reputation: 473

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.

Upvotes: 16

Related Questions