I had a Objective C project that was working fine and I decided to install Citrus Payment SDK via Cocoapods that SDK was wrote in Swift Language. I ran pod install after cocoapods installed my podfile look like this,
source 'https://github.com/CocoaPods/Specs.git' platform :ios, ‘8.0’ use_frameworks! target 'MyApp' do pod 'GoogleMaps' pod 'Google/SignIn' pod 'FBSDKCoreKit' pod 'FBSDKLoginKit' pod 'FBSDKShareKit' pod 'SDWebImage', '~>3.7' pod 'FGTranslator' pod 'SpeechKit' pod 'Braintree' pod 'SVPullToRefresh' pod 'IQKeyboardManager' pod 'CitrusPay', '~> 4.1.2' end
and now I'm getting this error:
ld: library not found for -lBolts, clang: error: linker command failed with exit code 1 (use -v to see invocation)
I checked for all missing frameworks and I open the project by using the .xcworkspace file. Already tried to clean the project or alt + clean the project and deleted the derived data in Xcode. I would post the build options but I don't know which are important for the problem. How can i fix the issue.Please, help me find the solution, Thank you for your help :)