본문 바로가기

Develop/Error

(5)
[Error/Xcode16] runtimeerror - `pbxgroup` attempted to initialize an object with unknown isa `pbxfilesystemsynchronizedrootgroup` from attributes: `{"isa"=>"pbxfilesystemsynchronizedrootgroup", "exceptions"=>["6c4f02462da697de008f9046"]<group>" 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..
[iOS/Error] Command SwiftVerifyEmittedModuleInterface failed with a nonzero exit code 해결법 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..
[iOS/Error] file not found: /applications/xcode.app/contents/developer/toolchains/xcodedefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.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
[iOS/Error] Invalid bundle contains disallowed nested bundles 해결법 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..
[iOS/Error] Failed to register bundle identifier 해결법 → Bundle Identifier 수정