Reputation: 2842
I am Developing an ios app and everything was going fine and then suddenly i got this error
error: /Users/himanshututeja/Library/Developer/Xcode/DerivedData/xxxxx-ebvzljjfvuvqcubfgvneealjrdrg/Build/Products/Debug-iphoneos/Alamofire.framework: No such file or directory
I deleted the derived data folder of xcode, Still no help. Do anyone know the reason why i am facing this issue?
Upvotes: 4
Views: 7739
Reputation: 35402
After you have import all the latest Alamofire.xcodeproj
you can embedded the framework like explained in this image - in the General tab / your project target:
Upvotes: 1
Reputation: 27448
If you are using cocoapods
then you should once tried to run pod setup
and pod install
. I think just running pod setup
will work!!
Hope this will help :)
Upvotes: 7