EmptyStateKit
EmptyStateKit copied to clipboard
It does not compile for Xcode 12
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.