/
💻

[React Native] The Swift pod `FirebaseCoreInternal` depends upon `GoogleUtilities`

React Native
On this page
  • ❐ 현상
  • ❐ Error 로그
  • ❐ 해결방법

❐ 현상

firebase 라이브러리 버전을 최신 버전으로 업데이트한 후, 빌드 시 아래 Error가 발생함



❐ Error 로그

The Swift pod `FirebaseCoreInternal` depends upon `GoogleUtilities`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set `use_modular_headers!` globally in your Podfile, or specify `:modular_headers => true` for particular dependencies.


❐ 해결방법

Podfile 파일에 아래 모듈을 추가한 후, 다시 pod install 합니다.

Podfile
pod 'GoogleUtilities', :modular_headers => true


SoDevly의 개발 블로그