Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Xcode
- IOS
- 웹뷰
- appstore
- iOS16
- Notification
- Apple
- SwiftUI
- error
- stack
- Git
- Firebase
- MacOS
- 한글
- rxswift
- JPA
- window
- Code
- Realm
- 개발자
- github
- UIButton
- mac
- view
- FLUTTER
- Archive
- Swift
- geofencing
- darkmode
- Session
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Xcode 14.3 CocoaPods Error 본문
반응형
Error
Xcode 14.3 으로 업데이트 후, Archive시 아래 에러 발생
- 에러 이미지
- 에러 코드
Run custom shell script '[CP] Embed Pods Frameworks'
...
rsync error: some files could not be transferred (code 23) at
/AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/
com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]
Command PhaseScriptExecution failed with a nonzero exit code
Solution
{App}/Pods/Target Support Files/Pods-{App}/Pods-{App}-frameworks.sh 파일에서,
source="$(readlink "${source}")"
위 코드를
source="$(readlink -f "${source}")"
이렇게 수정.
이후 pod install 할 필요없이, 바로 Archive 하면 됨.
이제 진짜 SPM 써야겠다,,
Reference
'iOS, Swift > Xcode, Xcode Error' 카테고리의 다른 글
Xcode Error ) Preview Crash (with. Tuist, Firebase ) (0) | 2023.08.07 |
---|---|
Xcode ) Xcode 개발자 필수 단축키 (0) | 2022.11.15 |
Xcode ) Unable to boot the Simulator - EEYatHo iOS (0) | 2022.11.11 |
Xcode ) AirBridge 1.18.0, Xcode 12.5 충돌 - EEYatHo iOS (0) | 2021.11.22 |
Xcode ) Xcode13 navigationBar.backgroundImage, setBackgroundImage - EEYatHo iOS (0) | 2021.09.27 |
Comments