개발 창고/iOS

[SwiftUI] How to Add Google Ads Plugins

로이제로 2023. 10. 29. 22:52
반응형

 

How to Add Google Ads Plugins

 개인적으로 자주 까먹는 부분이라 기록성으로 남겨둡니다. 부디 이 글을 보시는 분들에게도 도움이 되길 바랍니다.

 

1/ cocoapods 설정

$> sudo gem install cocoapods

cocoapods 설치

 

2/ pod 프로젝트 생성

$> cd {myWorkspace}

$> pod install

 

3/ Podfile 오픈

$> open -a xcode Podfile

target 내에 pod를 정의

 

4/ Pod Update

$> pod install --repo-update

 

5/ xcworkspace Open

xcodeporj로 open 하면 pod가 인식되지 않으므로 xcworkspace로 xcode에 오픈해주어야 합니다.

 

ERROR

위와 같은 오류가 발생하여 어찌할까 고민했는데, 알고 보니 아래 내용이 잘 설명되어있던 거였네요

[!] The `ScoreBoard [Debug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods-ScoreBoard/Pods-ScoreBoard.debug.xcconfig'. This can lead to problems with the CocoaPods installation

    - Use the `$(inherited)` flag, or

    - Remove the build settings from the target.

[!] The `ScoreBoard [Release]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods-ScoreBoard/Pods-ScoreBoard.release.xcconfig'. This can lead to problems with the CocoaPods installation

    - Use the `$(inherited)` flag, or

    - Remove the build settings from the target.

TARGET - Build Settings - Other Linker Flags - $(inherited)

반응형