Dev Ed
Dev Ed

Reputation: 921

Dart | Flutter Package: How to update a Packge Not allowing my development to make progress?

The Following Package has not been updated: https://pub.dartlang.org/packages/tts I am getting the same error. Is there any way I can update or fix this issue on my side to continue https://pub.dartlang.org/packages/tts#-analysis-tab-

Running flutter packages pub upgrade failed with the following output:

ERR: The current Dart SDK version is 2.1.0-dev.1.0.flutter-69fce633b7.

Because tts requires SDK version >=1.8.0 <=2.0.0, version solving failed.

Upvotes: 1

Views: 586

Answers (1)

G&#252;nter Z&#246;chbauer
G&#252;nter Z&#246;chbauer

Reputation: 657871

Add this to pubspec.yaml

dependency_overrides:
  tts: ^1.0.1

until tts is updated to support Dart 2 final.

Upvotes: 1

Related Questions