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
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)
'개발 창고 > iOS' 카테고리의 다른 글
[SwiftUI] AdMob 적용하기 (0) | 2023.11.24 |
---|---|
[SwiftUI] How to convert from String to CGFloat (0) | 2023.11.23 |
[SwiftUI] 두 개 이상의 문자열을 합치는 방법 (0) | 2023.08.08 |
[SwiftUI] 나머지 값을 구하는 방법 (0) | 2023.08.07 |
[SwiftUI] Date에서 특정 값 가져오는 방법 (0) | 2023.08.04 |