Study/Error


Xcode16에서 터미널을 실행하고 pod init 할 때 발생하는 오류이다. 1. Xcode 프로젝트를 열어서 Folder를 우클릭 하고 convert to Group 실행 2. xcodeproj 파일 우클릭 - 패키지 내용 보기 - project.pbxproj 파일 열기 3. [command+f] 로 내용 찾기아래 두 줄 제거minimizedProjectReferenceProxies = 1;preferredProjectObjectVersion = 77;내용 변경(77 → 55)objectVersion = 77; -> objectVersion = 56; 3. 다시 터미널에서 pod init 실행하면 성공출처https://github.com/CocoaPods/CocoaPods/issues/12583 p..

Framework를 만드는 도중에 처음 보는 에러가 등장하였다. Command SwiftVerifyEmittedModuleInterface failed with a nonzero exit code https://github.com/swiftlang/swift/issues/64669#issuecomment-1493939553 Xcode 14.3 RC 2 (14E222b)/Swift Compiler 5.8 SwiftVerifyEmittedModuleInterface failed to verify module interface · Issue #64Description Use Xcode 14.3 RC 2 compile a swift file which import a objc clang module, and a..

pod install 후 Xcode에서 발생하는 에러로 추정.. Solutionhttps://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3 Missing file libarclite_iphoneos.a (Xcode 14.3)After installing Xcode 14.3 in order to run my app on my iOS 16.3 iPhone XS. I get the following error: File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.stackoverflow.com

Archive Distribution에서 발생1. Invalid Bundle contains disallowed nested bundles2. Invalid Bundle contains disallowed file ‘Frameworks’ -> App Extension Target - [Build Phaes] - [Run Script] cd "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/"if [[ -d "Frameworks" ]]; then rm -fr Frameworksfi 출처https://stackoverflow.com/questions/25777958/validation-error-invalid-bundle-the-bun..