skip to Main Content

Because alrakeeniot requires SDK version >=2.19.6 <3.0.0, version solving failed.
pub get failed

3

Answers


  1. Update it in the pubspec.yaml file. It is located in the root folder of the project

    dependencies:
      flutter:
        sdk: ">=2.19.6 <3.0.0"
    
    Login or Signup to reply.
  2. dependencies:
      flutter:
        sdk: ">=2.19.6 <3.0.0"
    

    After updating the pubspec.yaml file, run the following command in your terminal to update your project dependencies: flutter pub get.

    Login or Signup to reply.
  3. you should change the SDK version in pubspec.yaml file then pub get again.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search