Reputation: 8661
I installed Alamofire by: dragging Alamofire.xcodeproj file into my project navigator, then in Project > General > Embedded Binaries, I clicked on the plus sign and selected Alamofire.framework. And it got integrated with no problem.
But how do I now remove it form my project ?
Thanks
Upvotes: 3
Views: 2292
Reputation: 6166
In some cases, after removing everything, the App will still recognize the library and compile with no errors.
In this case, the App folder in DerivedData
needs to be removed.
Upvotes: 0
Reputation: 398
You can remove it with the by selecting Target
and then selecting framework in Linked Frameworks and Libraries
if you don't succeed in this way you can then probably check the Search Path
of both of your Target
and Project
I was having the same problem and my frameworks were not being removed then i cleared the Search Path
of my Project
Upvotes: 0