AmazonS3RequestManager icon indicating copy to clipboard operation
AmazonS3RequestManager copied to clipboard

Xcode 9.0 beta compile error

Open DmitriyBagrov92 opened this issue 7 years ago • 3 comments

I can't compile your library (i used cocoa pods to attach it) screen shot 2017-08-23 at 10 13 27

DmitriyBagrov92 avatar Aug 23 '17 07:08 DmitriyBagrov92

I will be working on Xcode 9 compatibility sometime this week. I'll make sure this is fixed.

AnthonyMDev avatar Sep 11 '17 18:09 AnthonyMDev

@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

Laeyoung avatar Sep 21 '17 07:09 Laeyoung

Solution #66

WesleyBuck avatar Nov 03 '17 09:11 WesleyBuck