[React Native]CocoaPods could not find compatible versions for pod “FirebaseFirestore” 오류

Pod install 중 발생한 에러입니다. FirebaseFirestore 버전을 https://github.com/invertase/firestore-ios-sdk-frameworks.git 링크에서 가져오고 있는데 @react-native-firebase/firestore 패키지에서 요구하는 버전인 ‘7.11.0’과 맞지 않아서 충돌했다는 내용입니다.

해결

ios 폴더의 Podfile 파일을 텍스트 편집기로 열어서 코드를 수정해 주세요.

pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git'

구문을

pod 'Firebase/Firestore', '~> 7.11.0'

으로 바꿔줍니다.

그 후 다시 pod install –repo-update 명령어를 실행하면

터미널 Pod install 결과 메세지

성공적으로 라이브러리 설치를 모두 마쳤습니다!

평점

Leave a Comment