적당한 고통은 희열이다

- 댄 브라운 '다빈치 코드' 중에서

Swift iOS 앱 개발/Swift

[Swift iOS] How to use Multiple targets with CocoaPods

hongssup_ 2021. 7. 29. 17:59
반응형

타겟이 여러개인 프로젝트에서 CocoaPods를 사용해 라이브러리들을 설치해야할 경우 어떻게 하면 될까? 

use_frameworks!

def sharepods
    pod 'Firebase/Messaging'
end

target 'MainProject' do 
    sharepods
    pod 'Firebase/Anylytics'
    pod 'Alamofire'
end

target 'Extension' do 
    sharepods
end

이런 식으로 Podfile 안에서

함께 쓰는 것들을 먼저 정의해준 후 각 타겟에 추가해주고 각 타겟이 추가로 필요한 라이브러리들을 따로 더 추가해주면 된다. 

 

 

 

 

참고 :

https://stackoverflow.com/questions/14906534/how-do-i-specify-multiple-targets-in-my-podfile-for-my-xcode-project

https://therightsw.com/ios-multiple-targets-with-cocoapods/

728x90
반응형