Kryštof Mitka

Results 13 comments of Kryštof Mitka

This is one "official" workaround I found for iOS apps: https://developer.apple.com/forums/thread/663768 I am going to investigate this issue more, but I think there might be a way of just creating...

This seems quite relevant also: https://github.com/Polidea/RxAndroidBle/issues/530 @mikolak Any ideas?

The example in this repo simulates the behavior as well. This seems like an issue that can be solved either by trying to reconnect on fail or on Android 6...

Okay to is seems RxAndroid lib is doing that when connecting without reflection: ``` private BluetoothGatt connectGattCompat(BluetoothGattCallback bluetoothGattCallback, BluetoothDevice device, boolean autoConnect) { RxBleLog.v("Connecting without reflection"); if (Build.VERSION.SDK_INT >= 23...

@JAICHANGPARK @Mushroomizer We have whitelisted a bunch of Huawei devices, it is a known problem for these devices to be problematic and even big companies like Garmin or Fitbit have...

Ovearll Status 133 Gatt Error is a pretty generic BLE error and could mean a lot of things. Had some similar problems with some Samsung devices and we had to...

Experiencing the same problem. It seems the problem popups when calling for the state after creating the client, even when the client is being awaited. But sometimes it works just...

@mikolak iPhone 7 Plus iOS 14.1

@mikolak Yeah I am checking for if the client has been created already whenever I call it. ``` Future startBle() async { if (_isClientCreated) { return; } await createClient(); _isClientCreated...

@mikolak Are you talking about Hot Reload or Hot Restart?