I’m getting that "framework not found SwiftyJSON" error after pod update. I have tried many clean build folder and project. But It still stays in there. What should I do?
my pod file
platform :ios, ‘9.0’
use_frameworks!
target ‘QRContact’ do
pod 'SwiftyJSON', '~> 4.1'
pod 'FirebaseCore'
pod 'FirebaseMessaging'
pod 'Firebase'
end
3
Answers
In my case, i used below fix to resolve this issue
Step1, Select
SwiftyJSON
pod target and go to build settings.Step2, Under
Architecture
section select ‘Standard Architecture’It worked for me.
In
Project Navigator
, in folderPods
,Remove Pods.framework in:
Folder named Pods
Linked Frameworks and Libraries
In case anyone else is having the same problem, make sure that you are opening the xcworkspace (generated after installing the pod package) file in you app folder and not xcodeproj file.