플러터로 개발을 하다보면 firebase와 같은 패키지가 업데이트가 자주 됩니다.
이럴 땐 CocoaPods 라이브러리를 최신화해줘야합니다.
1. CocoaPods 삭제하기
# ios 디렉토리로 이동 후 Podfile.lock 삭제
cd {projectRootDir}/ios
rm -f Podfile.lock
# CocoaPods 의존성 삭제하기
pod deintegrate
# CocoaPods 캐시 삭제하기
pod cache clean --all
2. CocoaPods 설치하기
pod install 명령어를 입력하면, 아래와 같이 라이브러리가 다시 설치되는 것을 볼 수 있습니다.
# CocoaPods 라이브러리 설치
# --repo-update 옵션은 pod install 전에 pod repo update를 사전에 수행하도록 하는 명령어
pod install --repo-update
Analyzing dependencies
firebase_core: Using Firebase SDK version '10.18.0' defined in 'firebase_core'
firebase_messaging: Using Firebase SDK version '10.18.0' defined in 'firebase_core'
Downloading dependencies
Installing Firebase (10.18.0)
Installing FirebaseCore (10.18.0)
Installing FirebaseCoreInternal (10.18.0)
Installing FirebaseInstallations (10.18.0)
Installing FirebaseMessaging (10.18.0)
Installing Flutter (1.0.0)
Installing GoogleDataTransport (9.2.5)
'개발 > Flutter' 카테고리의 다른 글
플러터 웹뷰에서 물리 키보드 방향키가 동작하지 않는다. (0) | 2024.02.06 |
---|---|
Flutter에서 Google Spreadsheet에 데이터를 추가해보자. (0) | 2023.10.19 |
다국어 처리를 통해 Flutter 앱 이름을 언어에 맞게 설정해보자. (0) | 2023.09.14 |
Flutter Transition에 대해 한눈에 알아보자. (0) | 2023.08.30 |
Flutter 앱 아이콘을 내 이미지로 변경해보자. (0) | 2023.08.12 |
댓글