What's ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES with CocoaPods, Swift 3 and Xcode 8

前端 未结 6 670
隐瞒了意图╮
隐瞒了意图╮ 2020-12-08 01:49

after installing cocoapods and adding pod \"SwiftCarousel\" to pod file and uncomment the platform :ios, \'9.0\' I got this ERROR

ALWAYS

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 02:29

    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
    

提交回复
热议问题