required by this target
-
Xcode - The linked framework ~~ is missing one ore more architectures required by this target: arm64Programming/Errors 2021. 12. 26. 11:00
이 에러는 프로젝트를 Intel맥에서 생성하고 M1맥에서 실행하면 발생하는 문제인 거 같습니다. 해결 방법은 Build Settings을 추가시켜주면 끝! 1. Target -> Build Settings로 이동합니다. 2. +를 클릭한 후 Add User-Defined Setting 클릭 3. Key에 VALID_ARCHS Value에 $(ARCHS_STANDARD)를 입력해줍니다. 그럼 위와 같이 표시됩니다. 그럼 이제 양쪽에서 모두 정상적으로 빌드가 됩니다. https://stackoverflow.com/questions/63391793/xcode-12-build-target-in-wrong-order-for-simulator/63405201#63405201 Xcode 12 build target ..