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
- Archive
- Firebase
- Code
- IOS
- Git
- mac
- Notification
- view
- 한글
- 웹뷰
- SwiftUI
- darkmode
- 이미지
- iOS16
- window
- Apple
- rxswift
- Swift
- 개발자
- github
- error
- MacOS
- Xcode
- JPA
- Realm
- geofencing
- appstore
- FLUTTER
- Session
- UIButton
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
Upgrade from xCode 14.2 to 14.3 Ph… | Apple Developer Forums
Hi, we are seeing the same problem with Xcode betas 14E5197f, 14E5207e and 14E5215g. When using 14C18 there is no error. As part of our diagnosis, we went through the laborious task of creating each 'missing' folder in ../../../IntermediateBuildFilesPath,
developer.apple.com
'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