Reputation: 2182
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
How is this possible. The problem remains even if I create new project.
Upvotes: 39
Views: 19280
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
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
Reputation: 20804
Hello in your general Tab with your target selected check for section named
Embedded Binaries
I hope this help you
Upvotes: 65
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