-
x-code 16.2 버전 업데이트 후 에러 해결Ios 관련 2025. 2. 27. 10:34반응형
Fixing “Non-Modular Header Inside Framework Module” Error in Firebase Crashlytics for iOS
Include of non-modular header inside framework module 'firebase_crashlytics.Crashlytics_Platform'
최신 버전의 CocoaPods가 설치되어 있는지 확인
sudo gem install cocoapods
포드 청소 및 재설치
cd ios/ pod cache clean --all pod deintegrate pod install
Podfile 변경
platform :ios, '12.0' use_frameworks! target 'YourApp' do pod 'Firebase/Crashlytics' end
업데이트 후 Podfile실행
pod install
Xcode 빌드 설정 조정
빌드 설정 으로 이동
Allow Non-modular Includes in Framework Modules 검색
NO -> YES 로 변경
fluter clean 하고
pub get 다시 해주기
반응형'Ios 관련' 카테고리의 다른 글
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist' (0) 2025.03.11 evaluateJavaScript(_:completionHandler:)' 에러 (0) 2025.02.27 IOS 권한 오류 - Flutter (0) 2024.07.31 Xcode에서 빌드 시 Failed to prepare device for development 오류가 발생했을 때 해결 방법 (0) 2023.05.11 Cannot find type 'class' in scope 에러 (0) 2023.05.11