I'm trying to get the cloud_firestore
package, which is required for this flutter tutorial:
https://codelabs.developers.google.com/codelabs/flutter-firebase/#7
when I run flutter packages get
I only get back:
Package cloud_firestore has no versions that match >=0.7.0 <0.8.0 derived from...
The cloud_firestore
package says on this website https://github.com/flutter/plugins/tree/master/packages/cloud_firestore that the latest version is 0.7.2
I tried that version as well, but I get the same error.
I've also tried the dev, master and beta channels of flutter, without any success to get this package.
And, here's my pubspec.yaml
file:
name: test_app
description: Integrate firebase into flutter
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^0.1.0
cloud_firestore: ^0.7.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
Any suggestions on what could be going on? Thank you.