About RN new architecture #6517
-
Hey guys ! I have a question related with Reanimated 3.x and react-native new archictecture. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hey! Reanimated has no impact on which architecture your app uses and it won't use a different architecture than is used by your app. If your app uses the old architecture, reanimated will use the old one as well. If you decide to migrate to the new architecture, it will start using the new architecture code in reanimated. tl;dr Reanimated runs in the same architecture as your app |
Beta Was this translation helpful? Give feedback.
Reanimated was the first third-party React Native library to use JSI. JSI (JavaScript Interface) is a C++ API for interacting with JS runtimes such as JSC, Hermes or V8. JSI is indeed one of the pilliars of the architecture, however it's just a building block of the new architecture and it's alslo available to be used on the old architecture. Reanimated uses JSI since 2020 (I think)…