Questions tagged [react-native-turbomodule]

19 questions
0
votes
0 answers

Enable Fabric in react-native 0.71 using ReactFragment in android

I am currently having a usecase where I need to start my react-native component using ReactFragment using following syntax val reactNativeFragment: Fragment = ReactFragment.Builder() .setComponentName("ComponentName") …
0
votes
1 answer

Why can't my Fabric Native component find a .aar file dependency in my React Native app when running `react-native run-android`?

I am working on a Fabric Native component for Android as part of a React Native app and need to include a .aar file as a dependency. I have included a static lib file, mylibrary-debug.aar in a directory called libs that is a sibling to my src folder…
0
votes
0 answers

Building external C++ libraries like oneTBB for react-native new arch C++ turbomodule

I have a react-native new arch project where I am trying to write a C++ turbo module that can use either oneTBB(formerly intel thread building blocks) or boost::asio to leverage thread pools. Basically following this tutorial…
arinray
  • 178
  • 1
  • 12
0
votes
0 answers

How to run legacy native module with react native 0.70+?

I had react-native 0.63.4 and updated to 0.71.2. My native module doesn't work on react-native 0.70+. I tried different versions of RN. I started a new turbo native module and moved my native code to the new module. On android it works very well,…
1
2