SWIFT
After Last Xcode Update (14.3 14E222b) I am no longer able to archive my app
HiroDaegu
2023. 4. 25. 14:00
728x90
SMALL
Xcode를 14.3으로 업데이트한 이후, 제작하고 있는 어플을 테스트하기 위해 archive를 했으나 아래의 에러가 발생
| rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/co m.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9] |
구글링을 통해서 알게된 내용
https://developer.apple.com/forums/thread/727525
After Last Xcode Update (14.3 14E2… | Apple Developer Forums
A few days ago, I updated to a new XCode version. I am trying to upload a new version of my dictionary app. Despite the app continues to work on iPhone and iPad emulator and on my MacBook air without any problems, archiving fails, with errors like: "Showin
developer.apple.com
-> Cocoapod에 문제가 있다..
해결방법
Pods-APPNAME-frameworks.sh의 코드를 변경하는 것
// 변경전
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
// 변경 후
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi

728x90
LIST