Home > Software engineering >  Version solving for certain package versions failed in flutter
Version solving for certain package versions failed in flutter

Time:01-14

I have received this kind error a couple of time before with different packages, usually i just try a combination of different versions till i finally get a match that works. Is there a way to know what package versions are compatible instead of using the trial error approach which is outright time consuming and exhausting.

Initially i though it could be that one of the packages depends on the other, like in this case maybe flutter_svg depends on a different version of flutter_luban so the version in my pubspec clashes with it, but none of these packages depend on one another after viewing the respective package dependencies.

pub get failed (1; So, because sakaHapa depends on both
flutter_svg ^0.17.4 and flutter_luban ^0.1.13, version solving
failed.)

CodePudding user response:

You can use 'pub outdated' command like below.

enter image description here

  •  Tags:  
  • Related