Fleximex

Results 10 comments of Fleximex

Can you please elaborate? Is the problem that you can't connect to BLE devices or that when you are connected you lose connection?

but you can you find devices on Android? Can you post the logs when you try to connect to a device?

Can you both share your code where you connect to the device and add the listener to the device state? I don'get disconnected states after I connect with my code.

Maybe we can add a `clearList()` method to the class FlutterBlue. Or change the scan method: Change ``` if (timeout != null) { killStreams.add(Observable.timer(null, timeout)); } ``` to ``` if...

What I do is keep track of the connected devices in the Flutter app itself. So when you are connected you just set a boolean to true. Even better is...

Are you saving the results in a Map? For example `Map scanResults = Map();`. Because then you can just clear the list before every scan `scanResults.clear();` And the stale (old)...

Your results should be saved somewhere. How are you using the results if you don't have them stored somewhere? The Flutter Blue code actually does seem to clear the `_scanResults`...

If you know the information of the device beforehand then you can create a `BluetoothDevice` object yourself and use that to connect. Simple example: ``` BluetoothDevice myDevice = BluetoothDevice( id:...

reCAPTCHA makes use of its own `[ValidateRecaptcha]` (that you put above a method and should check the captcha) which I didn't manage to get working. It seems like no one...

We are aware `Amplify.reset()` is not battle tested for production, and thus not intended for production. In our case, however, we have a multi tenant solution where, on runtime, Amplify...