Maryna Azeez
Maryna Azeez

Reputation: 69

module 'cloud_firestore' not found (Flutter)

I am having this error when I am building my app with Xcode 'module 'cloud_firestore' not found. [enter image description here][1] I have updated my Cocoapods to 1.9.3 and I updated the flutter to 1.17.3, but still is not working and I am opening the file.xcworkspace.

Also, these are the versions of my dependencies:

  flutter:
    sdk: flutter
  flutter_screenutil: ^1.0.2
  intl: ^0.16.1
  charts_flutter: ^0.8.1

  flutter_picker:
    git: git://github.com/yangyxd/flutter_picker.git
  flutter_cupertino_data_picker: ^0.8.6
  firebase_core: ^0.4.3+1
  #firebase_analytics: ^5.0.9
  firebase_auth: ^0.15.1 
  provider: ^4.0.4
  flutter_spinkit: ^4.1.2
  cupertino_icons: ^0.1.2
  cloud_firestore: ^0.12.10
  firebase_database: ^3.1.3 


  [1]: https://i.sstatic.net/ZPc71.png

Upvotes: 1

Views: 4679

Answers (2)

Marco De Carolis
Marco De Carolis

Reputation: 71

from this

For anyone who is facing the problem when “Archiving” or trying to publish to the Apple Store:

Make sure to have all projects closed in Xcode Open “Runner.xcworkspace” not runner.xcodeproj You have to make sure that runner.xcodeproj is not open at the same time with workspace.

This is also assuming that you have run and built successfully prior to making an archive.

Upvotes: 7

Peter Haddad
Peter Haddad

Reputation: 80934

Update the firestore version:

cloud_firestore: ^0.13.6

Upvotes: 0

Related Questions