Snapkit: [NOTICE] Xcode 9 Compatibility with CocoaPods

Created on 20 Sep 2017  路  2Comments  路  Source: SnapKit/SnapKit

Currently Cocoapods is not able to correctly mix Swift 3.2 and Swift 4.0 pods. SnapKit 4.0.0 is only compatible with Swift 4.0.0, if you have integration issues use SnapKit 3.2.0 as there is no functional difference between the two.

In a future release of SnapKit 4.x.0 we may bring compatibility with Swift 3.2.0 if Cocoapods continues to have issues.

Most helpful comment

u can try in your podfile like this

if target.name == 'SnapKit'
            target.build_configurations.each do |config|
                config.build_settings['SWIFT_VERSION'] = '4.0'
            end
end

All 2 comments

What exactly do you mean? Give error message and how to reproduce.

u can try in your podfile like this

if target.name == 'SnapKit'
            target.build_configurations.each do |config|
                config.build_settings['SWIFT_VERSION'] = '4.0'
            end
end
Was this page helpful?
0 / 5 - 0 ratings

Related issues

chengkaizone picture chengkaizone  路  3Comments

aeves313 picture aeves313  路  4Comments

Shehryar picture Shehryar  路  7Comments

snibble-manan picture snibble-manan  路  7Comments

lolgear picture lolgear  路  5Comments