Recent Posts
Recent Comments
반응형
«   2025/08   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Archives
Today
Total
관리 메뉴

오늘도 공부

pod update/install 시 라이버러리를 전부 강제 3.2로 세팅하기 본문

링크모음/Swift

pod update/install 시 라이버러리를 전부 강제 3.2로 세팅하기

행복한 수지아빠 2017. 10. 16. 14:17
반응형

post_install do |installer|

    installer.pods_project.targets.each do |target|

        target.build_configurations.each do |config|

            config.build_settings['SWIFT_VERSION'] = '3.2'

        end

    end

end

반응형

'링크모음 > Swift' 카테고리의 다른 글

swift4 tour  (0) 2017.10.22
노티피케이션 사용법  (0) 2017.10.20
swift 에서 self 값 체크  (0) 2017.10.18
Contributing to Swift  (0) 2017.08.30
Object C -> Swift 로 변환해주는 온라인 사이트!!  (0) 2017.08.24