skip to Main Content

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


  1. 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.

    Login or Signup to reply.
  2. In Project Navigator, in folder Pods,

    Remove Pods.framework in:

    Folder named Pods
    Linked Frameworks and Libraries

    Login or Signup to reply.
  3. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search