Reputation: 1486
I am trying to build my project. And the build is failed due to this error.
Users/company/Desktop/app/DemoApp/Pods/Bolts/Bolts/iOS/BFAppLink.m:11:9: 'BFAppLink_Internal.h' file not found
I have tried different solutions. No answers on stackoverflow are helpful for me.
Any help would be appreciated!!
Upvotes: 2
Views: 386
Reputation: 115
Encounter same issue here and fixed! Just need to delete the whole Pods directory, keep the Podfile and then run pod install.
Upvotes: 1
Reputation: 349
You need to Clear CocoaPods cache, re-download and re-install all pods.
Upvotes: 2
Reputation: 9561
Install cocoapods and then run pod install
from the command line in the directory containing your xcode project file.
Upvotes: 2