Skip to content
Discussion options

You must be logged in to vote

Hey @wolfe719.
From the logs of the build ID, the flutter version 3.24.3 is being used. The reason for the build failure was also explained in the failed step:

Resolving dependencies...
The current Dart SDK version is 3.5.3.

Because device_flutter requires SDK version 3.5.4, version solving failed.


You can try the following suggestion to make the pubspec resolve:
* Try using the Flutter SDK version: 3.24.5. 

It's attempting to run the flutter packages pub get command with Dart version 3.5.3 but because version 3.5.4 was explicitly stated in your pubspec.yaml file, hence the failure. You can use a range in your pubspec.yaml file instead e.g:

environment:
  sdk: ">=3.2.6 <4.0.0"

and th…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@wolfe719
Comment options

@dam-ease
Comment options

Answer selected by dam-ease
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants