Flutter_blue: RxDart Version incompatibility

Created on 10 Jan 2020  路  4Comments  路  Source: pauldemarco/flutter_blue

Recently we need to upgrade the version of rxdart library, but during this process this massage have ocurred:

[fitwiz_app] flutter packages get
Running "flutter pub get" in fitwiz_app...
Because flutter_blue >=0.6.0 depends on rxdart ^0.22.0 and fitwiz_app depends on rxdart 0.23.1, flutter_blue >=0.6.0 is forbidden.

So, because fitwiz_app depends on flutter_blue ^0.6.3+1, version solving failed.
pub get failed (1; So, because fitwiz_app depends on flutter_blue ^0.6.3+1, version solving failed.)
exit code 1

Aparently, the flutter_blue depends the rxdart 0.22.0 version, but when we remove the rxdart of the pubspec, no one error has ocurred, why this is happening? how can I upgrade this 2 libraries?

image

rxdart: "0.23.1"
flutter_blue: ^0.6.3+1

Most helpful comment

@mciekurs2 My temp. solution is getting the current master branch of flutter blue:

  flutter_blue:
    git:
      url: git://github.com/pauldemarco/flutter_blue.git
      ref: master

Not yet sure, if everything works properly tough.

All 4 comments

Same problem here but with BLoC. Is there any temporary solutions I can do to fix it?

@mciekurs2 My temp. solution is getting the current master branch of flutter blue:

  flutter_blue:
    git:
      url: git://github.com/pauldemarco/flutter_blue.git
      ref: master

Not yet sure, if everything works properly tough.

Just a quick update: Everything seems to work fine from master (for now).

yes, using Master seems to be a great solution for now, closing this, and wait for version actualization.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

navaronbracke picture navaronbracke  路  6Comments

pauldemarco picture pauldemarco  路  3Comments

M3sca picture M3sca  路  3Comments

diso73 picture diso73  路  5Comments

coduy96 picture coduy96  路  5Comments