0
votes

I have a non-standard project layout in Xcode (the previous engineer has custom folder names under the root project instead of what Xcode gives you by default when you start a new Framework project). I’m trying to pull in a dependency like I’ve done in other projects that have a standard project layout. The moment I drag and drop the framework, any framework like AlamoFire, to the LInk Binary with Libraries Build Phase, it automatically ends up with a build error

Framework not found AlamoFire

When the compiler tries to link. Is there a place within Xcode or some xcconfig file that I need to do in order to reset or set an appropriate location to look for the framework when I drag and drop it to the Link Binary with Libraries section of Xcode?

1

1 Answers

0
votes

In Xcode Build Settings check the field "Library Search Paths" and "Framework Search Paths".

enter image description here

Specify the location of libraries or frameworks included within your project within those fields.