Firestore installation using Cocoapods

后端 未结 2 1065

I\'m trying to install firestore in my project.

when I\'m trying to install that, Xcode displays

fatal error: module map file \'/Users/account/Doc

相关标签:
2条回答
  • 2021-01-22 15:30

    Firestore requires latest CocoaPods. As per Google developer

    It should get better with CocoaPods 1.9.0 which is adding the capability to specify dynamic/static linkage for each pod in the Podfile.

    Please check this link https://github.com/firebase/firebase-ios-sdk/issues/3816

    0 讨论(0)
  • 2021-01-22 15:38

    We can also force CocoaPods to not apply modular headers for the troubling pods... in this case:

    pod 'BoringSSL-GRPC', '= 0.0.3', :modular_headers => false
    pod 'gRPC-Core', '= 1.21.0', :modular_headers => false
    
    0 讨论(0)
提交回复
热议问题