after installing cocoapods and adding pod \"SwiftCarousel\"
to pod file and uncomment the platform :ios, \'9.0\' I got this ERROR
ALWAYS
I suggest to set all pods after install as suggested in the message:
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = '$(inherited)'
end
end
end