본문 바로가기
반응형

해결33

[Solved] Flutter Member not found: FirebaseAppPlatform.verifyExtends [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 you.. 2023. 1. 14.
[ios][flutter] CocoaPods could not find compatible versions for pod "Firebase/Firestore": In snapshot (Podfile.lock): [ios][flutter] CocoaPods could not find compatible versions for pod "Firebase/Firestore": In snapshot (Podfile.lock): 에러 메시지 [ios][flutter] CocoaPods could not find compatible versions for pod "Firebase/Firestore": In snapshot (Podfile.lock): 해결 방법 pod repo update 명령 수행 Podfile.lock 파일 삭제 pod install 명령 수행 2023. 1. 14.
[ios][flutter] Invalid Podfile file: undefined method `enable_user_defined_build_types!' [ios][flutter]Invalid Podfile file: undefined method `enable_user_defined_build_types!' 해결 방법터미널을 열고 아래 명령어를 차례대로 입력한다. gem cleanupbrew uninstall cocoapodssudo gem uninstall cocoapodssudo gem install cocoapods -v 1.10.0 -n /usr/local/binsudo gem install cocoapods-user-defined-build-typespod install --repo-update ( 2023. 1. 14.
flutter: command not found 해결 방법 flutter: command not found해결 방법  플러터를 설치하고 나서 flutter: command not found 에러 메시지가 나올 때가 있다.이 때는 bash와 zsh의 환경 변수 경로를 추가하면 된다. bash 환경 변수 추가터미널을 열고 vi .bash_profile.bash_profile에 아래처럼 flutter의 바이너리 파일이 있는 디렉터리를 지정 (경로는 각자 개발 환경마다 다름!) export PATH="$PATH:~/development/flutter/bin"            3. source ./.bash_profile 명령어로 환경 변수 경로 적용 2. zsh 환경 변수 추가 (mac OS - 카날리타 부터)터미널을 열고 vi .zshrc.zshrc 에 아래처럼.. 2023. 1. 14.
반응형