Dev Aggarwal
Dev Aggarwal
If you can check out this repo and make the fixes on your local machine, I'd gladly accept that PR.
I don't think the underlying libraries, [RxBluetoothKit](https://github.com/Polidea/RxAndroidBle) / [RxAndroidBle](https://github.com/Polidea/RxBluetoothKit) expose this. You better file an issue there, since this library is fully dependent on those.
I'm just using the [connect](https://pub.dev/documentation/rx_ble/latest/rx_ble/RxBle/connect.html) method, with the `deviceId` stored in [shared preferences](https://pub.dev/packages/shared_preferences) and a timeout. (Passing `autoConnect: true` does the scanning for you automatically.) ```dart final stream = RxBle.connect(deviceId,...
Thanks for the research. How are you planning to make this feature cross-platform?
A `pod upgrade` should theoretically let you upgrade to it without a change in this plugin, since 2.13 -> 2.18 is a minor change and the dependency is specified using...
We've been using AppSync [using the dart http interface](https://github.com/scientifichackers/flutter_cognito_plugin#appsync), and it works fine. If you're using another native plugin, sorry, but we don't any plans to support them.
If you don't care about minifying, try adding the following to `android/app/build.gradle`. ```gradle android { ... buildTypes { release { ... shrinkResources false minifyEnabled false } } } ```
Have you tried just running the binary with sudo?
Hello, this is a bug in upstream - https://github.com/aws-amplify/aws-sdk-android/issues/685#issuecomment-460349130
@robert-stevens Using [Hosted UI](https://github.com/scientifichackers/flutter_cognito_plugin#hosted-ui) should fix this.