psycheangel
psycheangel
@j-piasecki Hi, I tried to add NDK_APP_SHORT_COMMANDS to android/build.gradle as you suggested in PR, it still resulted with same behavior with current issue. then I tried solution like in react-native...
> Great that you solved the problem! In the meantime, we've replaced NDK with CMake in the Gesture Handler 2.6.0. It would be great if you could check if it...
Hi, this problem still occurs with react-native 0.69.1 on Windows machine
I am not familiar with the expo environment, but have you tried to rebuild your project, or clear cache the cli ? `npm start --clean-cache`
Hi, sorry can not find the issue with minimal repo + react-native 0.70.5. you can try to add conditional in babel config to include suspected library that causing error. ```...
you should use patch-package for that, because its already fixed on react-native 0.71.0.rc-0 [link](https://github.com/facebook/react-native/commit/af0e6cdae5762346a013a60e9b3f095204292550)
you could read [babel-plugin-module-resolver docs](https://github.com/tleunen/babel-plugin-module-resolver/blob/master/DOCS.md#alias). Probably the example below would suffice for the alias? ``` module.exports = { plugins: [ ["module-resolver", { alias: { '@app/': './app/', '@app/icons': './app/assets/icons', '@app/images': './app/assets/images',...
In my case, this problem happens when using RNFetchBlob and react-native-threads. response in RNFetchBlob will be without headers.