Inflearn Community Q&A
push 적용중 에러
Written on
·
2.8K
0
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.
"react": "17.0.2",
"react-native": "0.68.2",
사용중입니다
저런 에러가 pod intsall할때마다 나는데요
왜 그런지 알수가 없습니다.
react-native
Answer 3
1
zerocho
Instructor
podfile에 use_native_modules! 아래에
pod 'GoogleUtilities', :modular_headers => true
적은 뒤 pod install 다시 하시면 됩니다.
0
0





