250x250
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
- jQuery
- image
- CSS
- 애니메이션
- ipad
- HTML
- iPhone
- iOS 개발자
- css3
- 프론트엔드
- button
- 비전공 개발자
- react
- php
- front-end
- 개발자
- IOS
- Animation
- xcode
- hover
- javascript
- 자바스크립트
- 백엔드
- SWIFT
- 비전공자
- 풀스택
- effect
- MAC
- keyframes
- html5
Archives
- Today
- Total
비전공자 개발일기
After Last Xcode Update (14.3 14E222b) I am no longer able to archive my app 본문
SWIFT
After Last Xcode Update (14.3 14E222b) I am no longer able to archive my app
HiroDaegu 2023. 4. 25. 14:00728x90
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
'SWIFT' 카테고리의 다른 글
iOS 개발자가 되기 위해서 (0) | 2023.04.30 |
---|---|
Distance Calculator (0) | 2023.04.21 |
Xcode Simulator Cache Delete (0) | 2023.04.21 |
Virate Method (0) | 2023.04.14 |
WKWebView OverScroll Disable Setting (0) | 2023.03.15 |