Kumar Parth
Kumar Parth
> Same here > > Btw, I've used the new build system and it failed with tons off errors > For this you have to remove the duplicate fonts that...
> which one? > >  @levitomer Try to remove all fonts from `Copy Bundle Resources` and build again. If you're using latest react-native version you need not to define...
Add `@react-native` to your `transformIgnorePatterns` like this to your `jest.config.js` : ``` transformIgnorePatterns: [ "/node_modules/(?!(@react-native|react-native)/).*/" ] ``` Also add the preset something like this in jest.config.js: ``` preset: "react-native", setupFilesAfterEnv:...
Facing the same native crash on some Samsung devices running on android 12.
I got this issue fixed by enabling Hermes. Earlier, hermes in my project was disabled because of some reason so had to turn it on to avoid these crashes. Now...
Same issue here on android with: `"react-native": "0.67.3",` `"react-native-reanimated": "^2.9.1",` ``` OS Version: Android 11 (GM1901_14_220617) Report Version: 104 Exception Type: Unknown (SIGABRT) Application Specific Information: Abort Thread 0 Crashed:...
@cleandevcode Did you get any solution?