I know that there are almost 1000 questions like this one, but I've tried all the answers on the others and no one could helps me.
I'm creating an app in Swift 2.0 that works with cocoapods. In my podfile I have:
platform :ios, '8.0' use_frameworks! target 'TargetName' do pod 'SinchRTC' pod 'SinchVerification-Swift' pod 'Parse' end
And everything was working fine, at one point I tried to run again the app and I got this error:
dyld: Library not loaded: @rpath/Bolts.framework/Bolts
Referenced from: ...
Reason: no suitable image found.
Did find: ... (lldb)
Then I tried everything like deleting and adding again pods, create a new project, deintegrate and reinstall cocoapods... Everytime I get the same error and if I remote Bolts.framework I get the error on another framework. What should I do?
P.S. The app isn't running also in the simulator, not only on device.