Klemen
Klemen

Reputation: 2182

Xcode doesnt have Embed Frameworks section

I'm having a problem. I'm trying to implement Amazon frameworks in my ios xcode project and I also need to add them in Build Phases > Embed Frameworks section. But there is no option in my xcode window. Here is the screenshot

enter image description here

How is this possible. The problem remains even if I create new project.

Upvotes: 39

Views: 19280

Answers (4)

Túlio Calazans
Túlio Calazans

Reputation: 318

You can create it on Build Phases tab!

Just click in the "+" icon and select "New Copy Files Phase". After that, rename the item created to "Embed Frameworks" and set the "Destination" field to "Frameworks".

Upvotes: 7

Molly J
Molly J

Reputation: 519

Another reason Embedded Binaries tab doesn't show up in Xcode is if you're in a command line project instead of a cocoa project and you're targeting Mac OS X.

Upvotes: 12

Reinier Melian
Reinier Melian

Reputation: 20804

Hello in your general Tab with your target selected check for section named

enter image description here

Embedded Binaries

I hope this help you

Upvotes: 65

Steven Hepting
Steven Hepting

Reputation: 12504

You can tap the General tab to see those sections.

As an aside, using CocoaPods or Fabric will make that integration easier on you.

Upvotes: 1

Related Questions