Voznov
Voznov
I have the same problem. I set the connection to the base, sent a couple of requests and everything worked. After some time of inaction led to this error. [email protected]...
Here you can see this behavior on Android Emulator. It also happens on real devices with release build https://github.com/expo/expo/assets/24855015/b25a5f6a-928e-488c-8e65-02df6df03a1f
@Long2k1Sens @myle-sens Now I have temporary solution: Inside useEffect in root element (it's important to do it in useEffect because it runs in both cases (with js bundle reload and...
@Developeranees Yeah, we just wrote own native module for working with location on Android 😃
I solved it patching react-native typings ```diff diff --git a/node_modules/react-native/Libraries/Text/Text.d.ts b/node_modules/react-native/Libraries/Text/Text.d.ts index a9d2a1b..8274e84 100644 --- a/node_modules/react-native/Libraries/Text/Text.d.ts +++ b/node_modules/react-native/Libraries/Text/Text.d.ts @@ -19,6 +19,7 @@ import { NativeSyntheticEvent, TextLayoutEventData, } from '../Types/CoreEventTypes'; +import...
I fixed this issue (it works for 1.2.1 version). You need to apply this patch for **@react-navigation/core**: ```diff diff --git a/node_modules/@react-navigation/core/src/Group.tsx b/node_modules/@react-navigation/core/src/Group.tsx index 352ba31..893d2c2 100644 --- a/node_modules/@react-navigation/core/src/Group.tsx +++ b/node_modules/@react-navigation/core/src/Group.tsx @@...
The solution for it is to roll back to 1.2.1 and apply a little patch (if you are using react-navigation) [#257 ](https://github.com/preactjs/signals/issues/257#issuecomment-1508478886)