Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ios/native/REAInitializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ NS_ASSUME_NONNULL_BEGIN

namespace reanimated {

[[deprecated(
"REAInitializer method is no longer required, you can just remove invocation.")]] void
REAInitializer(RCTBridge *bridge);

#if REACT_NATIVE_MINOR_VERSION <= 71
[[deprecated(
"REAJSIExecutorRuntimeInstaller method is no longer required, you can just remove invocation.")]] JSIExecutor::
Expand Down
5 changes: 5 additions & 0 deletions ios/native/REAInitializer.mm
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

namespace reanimated {

void REAInitializer(RCTBridge *bridge)
{
// do nothing, just for backward compatibility
}

#if REACT_NATIVE_MINOR_VERSION <= 71

JSIExecutor::RuntimeInstaller REAJSIExecutorRuntimeInstaller(
Expand Down