개발 환경
---------------------------------
OS : Mac
개발 툴 : xcode
개발 언어 : Swift
xcode version : 14.3
min iOS version : 13.0
---------------------------------
오늘 만난 에러 ㅡㅡ
Showing All Messages
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/aaefcfd1-5c95-11ed-8734-2e32217d8374/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]
rsync 오류: /AppleInternal/Library/BuildRoots에서 일부 파일을 전송할 수 없습니다
Showing All Messages
Command PhaseScriptExecution failed with a nonzero exit code
Xcode를 14.3으로 업데이트 한 후 아카이브를 생성할 때마다 발생하는 에러이다.
위 같은 에러를 만나면 이 게시물의 해결방안을 한번 따라해보자
나는 해결됐다.
프로젝트 내 -frameworks.sh 파일을 업데이트 해줘야한다.
위 파일은 아래 경로에 있다. 차근차근 따라가보자.
APPNAME/ios/App/Pods/Target Support Files/Pods-App/Pods-App-frameworks.sh
파일을 찾았으면 들어가서
source="$(readlink "${source}")"
위 코드를 아래 코드로 바꿔준다. 중간에 -f 하나 추가해주는거다.
source="$(readlink -f "${source}")"
그런 후 프로젝트를 다시 실행하고
clean Build Folder 를 해준다 이거는 해야 맘이 편하니,.,,ㅎ
이상이다.
'개발노트 > iOS' 카테고리의 다른 글
iOS : DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead (1) | 2023.11.26 |
---|---|
[SWIFT] 앱 설정으로 이동하기 (1) | 2023.11.18 |
[Swift] WkWebview Custom UserAgent 설정하기 (0) | 2023.03.26 |
[Swift] KaKao Link Share, 카카오톡 링크 공유하기 (0) | 2023.02.27 |
[iOS] UILabel에 padding 주기 (0) | 2023.02.22 |
댓글