MxABC / swiftScan

A barcode and qr code scanner( 二维码 各种码识别,生成,界面效果)
MIT License
1.59k stars 325 forks source link

更新一下pod啊,现在pod下来的不支持swift 4.2 #75

Open kj-love-xj opened 5 years ago

kj-love-xj commented 5 years ago

更新一下pod啊,现在pod下来的不支持swift 4.2

AmadeusSys commented 5 years ago

post_install do |installer| installer.pods_project.targets.each do |target| if target.name == 'swiftScan' target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.0' end end end end 如上代码可以使用

wooseng commented 5 years ago

84