flutter_reactive_ble icon indicating copy to clipboard operation
flutter_reactive_ble copied to clipboard

protobuf ^3.1.0 support

Open nissaba opened this issue 1 year ago • 5 comments

My project was started suing this lib, and also needs to use mcumgr_flutter.

But I needed to update mcumgr_flutter and other libs because Apple as set the minimum target at iOS 12. This cause the project to break because reactive_ble_mobile depends on protobuf ^2.0.0 and mcumgr_flutter >=0.2.0+1 and so mcumgr_flutter >=0.2.0+1 is incompatible with flutter_reactive_ble >=5.0.3, and because MyProject depends on both flutter_reactive_ble ^5.0.3 and mcumgr_flutter ^0.3.0+1, version solving failed

nissaba avatar Jan 26 '24 18:01 nissaba

ping!

nissaba avatar Feb 14 '24 20:02 nissaba

This would be useful for me too as protobuf well known types requires protobuf 3.x. I haven't yet come across another way of solving using custom protobuf messaging while importing well-known types in the .proto schema.

keithle888 avatar Apr 27 '24 16:04 keithle888

This would be useful for me too as protobuf well known types requires protobuf 3.x. I haven't yet come across another way of solving using custom protobuf messaging while importing well-known types in the .proto schema.

I solved the problem by using Flutter_bleu_plus

nissaba avatar May 17 '24 14:05 nissaba

Any plan to update this lib ? At least the Protobuf dependency prevent us to update the other dependency in our projects.

paulVulog avatar May 23 '24 08:05 paulVulog

We've been running successfully for quite a while with this workaround:

dependency_overrides:
  protobuf: 3.1.0

rohansingh avatar Jun 07 '24 16:06 rohansingh