Dima Andreyuk
Dima Andreyuk
I am experiencing the same issue as @chaadow. I can confirm that `sentry-expo` crashes the app on both iOS and Android production builds (`Expo SDK 50`, `sentry-expo 7.1.0`). Removing `sentry-expo`...
I think the issue is resolved now `import ViewShot from 'react-native-view-shot';`  "react-native": "0.71.14", "react-native-view-shot": "3.5.0", "typescript": "^4.9.4"
It seems that this library doesn't support edge-to-edge expo app.json ```json "android": { "edgeToEdgeEnabled": true } ``` deps ```json "expo": "^53.0.0", "react-native-modalize": "^2.1.1", "react-native-portalize": "^1.0.7", ``` Android version 13
Same situation for me, Android 2.0.3 works fine, 3.1.2 gets disconnected after max 30s apparently, disconnection time depends on timeout in the `connectToDevice` method ```ts await bleManagerDevice.connectToDevice(device.id, { timeout: 15000...
@p4bl1t0 version 3.1.2 works only for a few seconds (max 30 seconds - if I set timeout: 30000), if I set timeout 5000 it will work for a 5s, but...
I've debugged both versions a bit, so I have two screens: 1. ConnectionScreen (starts device scan -> connects to the BLE device -> navigates to ReadCharacteristicScreen) 2. ReadCharacteristicScreen (every second...
@dominik-czupryna-withintent I mentioned that in 3.1.2 disconnection time depends on timeout in the connectToDevice method and logs confirm this (29 - 13 = ~15). But this is a bug and...