EmptyStateKit icon indicating copy to clipboard operation
EmptyStateKit copied to clipboard

It does not compile for Xcode 12

Open jbarros35 opened this issue 5 years ago • 0 comments

For some reason this pod can't be used on Xcode 12 anymore. I put following on my pod file


post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      if Gem::Version.new('8.0') > Gem::Version.new(config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'])
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
      end
    end
  end
end

maybe it can't be used with this pod because it won't be found anymore.

jbarros35 avatar Sep 18 '20 12:09 jbarros35