We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fbjni
1 parent 437aeb1 commit 5e1b1eeCopy full SHA for 5e1b1ee
1 file changed
packages/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt
@@ -27,13 +27,20 @@ target_include_directories(
27
28
find_package(ReactAndroid REQUIRED CONFIG)
29
find_package(fbjni REQUIRED CONFIG)
30
-if (ReactAndroid_VERSION_MINOR GREATER_EQUAL 76)
+if (ReactAndroid_VERSION_MINOR GREATER_EQUAL 80)
31
+ find_package(fbjni REQUIRED CONFIG)
32
target_link_libraries(
33
${PACKAGE_NAME}
34
ReactAndroid::reactnative
35
ReactAndroid::jsi
36
fbjni::fbjni
37
)
38
+elseif (ReactAndroid_VERSION_MINOR GREATER_EQUAL 76)
39
+ target_link_libraries(
40
+ ${PACKAGE_NAME}
41
+ ReactAndroid::reactnative
42
+ ReactAndroid::jsi
43
+ )
44
elseif (ReactAndroid_VERSION_MINOR GREATER_EQUAL 75)
45
46
0 commit comments