반응형
질문
저는 플러터 프로젝트를 가지고 있습니다. iOS 버전을 실행하려고하는데, 최신 버전의 플러터와 Xcode로 업데이트 한 후에 오류가 발생합니다. 저는 파이어베이스 코어 플러그인을 사용합니다.
오류:
기기용 사전 컴파일 된 애플리케이션을 빌드하지 못했습니다.
오류 (Xcode): 파일을 찾을 수 없음: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
오류 (Xcode): 링커 명령이 종료 코드 1로 실패했습니다 (자세한 내용은 -v를 사용하여 호출을 확인하십시오)
Podfile:
# 전역 플랫폼을 정의하려면 이 줄의 주석을 해제하십시오
# platform :ios, '12.0'
# CocoaPods 분석은 flutter 빌드 지연 시간에 영향을주는 동기식 네트워크 통계를 보냅니다.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
또한 다음 명령을 사용하여 설치된 모든 팟을 시도해 보았습니다:
pod deintegrate
rm Podfile.lock
rm -rf Pods
그런 다음 저장소를 업데이트하고 팟을 설치하려고 시도했으나 여전히 동일한 오류가 발생합니다. Xcode를 다시 설치해야합니까?
Flutter 패키지:
firebase_core: ^2.8.0
firebase_crashlytics: ^3.0.17
firebase_analytics: ^10.1.6
firebase_messaging: ^14.3.0
이에 대한 해결책이 있을까요? 시간 내 주셔서 감사합니다.
답변
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
ios/Podfile을 업데이트해보세요. 파일 상단에 있는 버전을 13.0으로 변경해보세요.
반응형
댓글