File tree 5 files changed +14
-2
lines changed
5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ android {
125
125
resValue " string" , " app_name" , project. ext. react. appName
126
126
127
127
def cppStd = reactNativeVersion >= v(0 , 74 , 0 ) ? " -std=c++20" : " -std=c++17"
128
- if (enableNewArchitecture) {
128
+ if (reactNativeVersion >= v( 0 , 76 , 0 ) || enableNewArchitecture) {
129
129
externalNativeBuild {
130
130
cmake {
131
131
arguments " -DANDROID_STL=c++_shared" ,
Original file line number Diff line number Diff line change 9
9
#define autolinking_cxxModuleProvider facebook::react::autolinking_cxxModuleProvider
10
10
#define autolinking_registerProviders facebook::react::autolinking_registerProviders
11
11
12
- #else // < 0.75
12
+ #elif __has_include ( < rncli . h > ) // < 0.75
13
13
14
14
#include <rncli.h>
15
15
16
16
#define autolinking_ModuleProvider facebook::react::rncli_ModuleProvider
17
17
#define autolinking_cxxModuleProvider facebook::react::rncli_cxxModuleProvider
18
18
#define autolinking_registerProviders facebook::react::rncli_registerProviders
19
19
20
+ #else // Autolinking is handled elsewhere in the old architecture (paper)
21
+
22
+ #define REACTAPP_LEGACY_AUTOLINKING 1
23
+
20
24
#endif // __has_include(<autolinking.h>)
21
25
22
26
#endif // REACTAPP_JNI_AUTOLINKINGCOMPAT_H_
Original file line number Diff line number Diff line change @@ -32,8 +32,10 @@ void ComponentsRegistry::registerNatives()
32
32
33
33
facebook::react::DefaultComponentsRegistry::registerComponentDescriptorsFromEntryPoint =
34
34
[](std::shared_ptr<ComponentDescriptorProviderRegistry const > registry) {
35
+ #ifndef REACTAPP_LEGACY_AUTOLINKING
35
36
// Register providers generated by `@react-native-community/cli`
36
37
autolinking_registerProviders (registry);
38
+ #endif // !REACTAPP_LEGACY_AUTOLINKING
37
39
};
38
40
}
39
41
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ using facebook::react::TurboModule;
19
19
20
20
namespace
21
21
{
22
+ #ifndef REACTAPP_LEGACY_AUTOLINKING
22
23
std::shared_ptr<TurboModule> cxxModuleProvider (const std::string &name,
23
24
const std::shared_ptr<CallInvoker> &jsInvoker)
24
25
{
@@ -42,15 +43,18 @@ namespace
42
43
// And we fallback to the module providers autolinked by RN CLI
43
44
return autolinking_ModuleProvider (name, params);
44
45
}
46
+ #endif // !REACTAPP_LEGACY_AUTOLINKING
45
47
} // namespace
46
48
47
49
JNIEXPORT jint JNICALL JNI_OnLoad (JavaVM *vm, void *)
48
50
{
49
51
return facebook::jni::initialize (vm, [] {
52
+ #ifndef REACTAPP_LEGACY_AUTOLINKING
50
53
DefaultTurboModuleManagerDelegate::cxxModuleProvider = &cxxModuleProvider;
51
54
DefaultTurboModuleManagerDelegate::javaModuleProvider = &javaModuleProvider;
52
55
DefaultComponentsRegistry::registerComponentDescriptorsFromEntryPoint =
53
56
&autolinking_registerProviders;
57
+ #endif // !REACTAPP_LEGACY_AUTOLINKING
54
58
});
55
59
}
56
60
Original file line number Diff line number Diff line change @@ -28,11 +28,13 @@ std::shared_ptr<TurboModule> TurboModuleManagerDelegate::getTurboModule(StringRe
28
28
std::shared_ptr<TurboModule> TurboModuleManagerDelegate::getTurboModule (
29
29
StringRef name, const JavaTurboModule::InitParams ¶ms)
30
30
{
31
+ #ifndef REACTAPP_LEGACY_AUTOLINKING
31
32
// Try autolinked module providers first
32
33
auto module = autolinking_ModuleProvider (name, params);
33
34
if (module != nullptr ) {
34
35
return module;
35
36
}
37
+ #endif // !REACTAPP_LEGACY_AUTOLINKING
36
38
37
39
return rncore_ModuleProvider (name, params);
38
40
}
You can’t perform that action at this time.
0 commit comments