AmazonS3RequestManager
AmazonS3RequestManager copied to clipboard
Xcode 9.0 beta compile error
I can't compile your library (i used cocoa pods to attach it)
I will be working on Xcode 9 compatibility sometime this week. I'll make sure this is fixed.
@DmitriyBagrov92 add this code on Podfile
post_install do |installer| installer.pods_project.targets.each do |target| if target.name == 'AmazonS3RequestManager' target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.2' end end end end
Solution #66