WenchaoD / FSCalendar

A fully customizable iOS calendar library, compatible with Objective-C and Swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FSCalendar not working in updated Xcode (14.3)

rawatyogi opened this issue · comments

Showing All Issues
File not found: /Users/XYZ/Downloads/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a

Linker command failed with exit code 1 (use -v to see invocation)

You can search Google for that but I will note the solution here btw:

Add the below code to the Podfile

post_install do |installer|
    installer.generated_projects.each do |project|
          project.targets.each do |target|
              target.build_configurations.each do |config|
                  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
               end
          end
   end
end

Source: libarclite

Can someone of the maintainers update to a minimum deployment target higher than iOS 11?