Error after Xcode 15 update : DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead
최근 xcode를 15로 업데이트 한 뒤 build를 하니 해당 에러가 발생되었습니다. xcode를 열어 보니, fcm을 사용하는 프로젝트에서 Firebase에 대해 에러가 발생함을 알 수 있었습니다. 제가 해결해본 방법은 1번 해당 프로젝트 폴더 > ios > Pods > Target Support Files > Firebase 로 이동하여 or 해당 경로 안에 있는 .xcconfig 파일을 다음과 같이 수정해줍니다. (debug, release 모두 수정하였습니다) DT_TOOLCHAIN_DIR > TOOLCHAIN_DIR 성공! 2번 ios > Podfile post_install 안에 xcconfig_path = config.base_configuration_reference.real_path x..
2023.09.20