반응형
[Solved]
Flutter Member not found: FirebaseAppPlatform.verifyExtends
해결 방법 (Solution)
1. pubspec.yaml에 아래 한 줄 추가
[Eng](Add below line to pubspec.yaml)
dependency_overrides:
firebase_core_platform_interface: 4.5.1
2. 아래 명령으로, 패키지 메이저 버전 업그레이드
[Eng](Use the command below to upgrade the package major version.)
flutter pub upgrade --major-versions
3. iOS 프로젝트의 Pods를 업데이트
[Eng](Update the Pods of your iOS project)
cd ios && pod deintegrate
rm -f Podfile.lock
rm -f Podfile
flutter packages get
pod install --repo-update
반응형
'Development Solutions > Flutter & Dart' 카테고리의 다른 글
Flutter Unknown upstream repository issue (solved) (0) | 2023.07.26 |
---|---|
플러터에서 api 함수를 http로 요청하기 [flutter][OpenAPI] (0) | 2023.02.08 |
플러터 업그레이드 되면서 바뀐 버튼 정리 (0) | 2023.01.14 |
flutter: command not found 해결 방법 (0) | 2023.01.14 |
[Flutter][iOS] 데이터를 클라우드 말고 기기에만 저장하는 방법 (0) | 2023.01.10 |