skip to Main Content

Below Steps are followed multiple times but not getting result.
I tried remove pod and install again.
Clean Project -> Remove DerivedData -> Open Project.

2

Answers


  1. Chosen as BEST ANSWER

    I tried with the manual framework and it is working fine. Using manual framework you are getting error then please check below link.

    XCode 15 - Getting WatchKit Extension Error while Project try to run in real device


  2. it’s likely that the ‘YOChartImageKit’ framework won’t build. This is because it’s a very old library. The podspec indicates that the minimum deployment target is iOS 7.0. Based on this (https://developer.apple.com/forums/thread/728021), newer Xcode versions no longer support building for such old deployment targets.

    I suggest adding the following code snippet to your podfile:

    post_install do |installer|
      installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
        end
      end
    end
    

    then you’ll have to do a pod install and probably you will have to set the User script sandboxing build options to NO in your target’s build settings.

    I was able to successfully build it this way. However, I would like to note that this library is very old (abandonware). Please take this into consideration before using it.

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