반응형
FlutterFire 적용 과정에서
오류를 수없이 뿜어내는 경우
아래 두 가지를 해 보면 된다.
ios -> Podfile
# platform :ios, '13.0'
-> 여기서 주석마크 # 제거
platform :ios, '13.0'
ios -> Podfile
target 'Runner' do
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
여기서 두줄 추가
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
완성!
반응형
'[클라이언트] > [Flutter]' 카테고리의 다른 글
[Flutter] Unhandled Exception: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10 (0) | 2022.10.22 |
---|---|
[Flutter] FireStore Unhandled Exception: PlatformException (0) | 2022.10.22 |
[Flutter] Future / async / await 예제 메모 4 (0) | 2022.09.26 |
[Flutter] 버전 코드 / 버전 관리 / 스토어 버전 관리 (0) | 2022.07.16 |
[Flutter] 인터넷 연결 확인 (0) | 2022.07.12 |