From aefca27c67df4ab19733e33e26f5457e297e0b5f Mon Sep 17 00:00:00 2001 From: zhongwuzw Date: Thu, 1 Feb 2024 08:33:15 -0800 Subject: [PATCH] Fixes Android compile failed. (#42787) Summary: ![image](https://github.com/facebook/react-native/assets/5061845/557c51fd-e675-4d36-b85d-f9367b44dfda) cc. cortinico ## Changelog: [ANDROID] [FIXED] - Fixes Android compile failed. Pull Request resolved: https://github.com/facebook/react-native/pull/42787 Test Plan: N/A Reviewed By: cipolleschi Differential Revision: D53312698 Pulled By: cortinico fbshipit-source-id: 29fdd1957c2310cef9b7aca06b09b5691176ea58 --- .../ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt b/packages/react-native/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt index 91dec0d62c09c8..ca8f719077f73f 100644 --- a/packages/react-native/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt +++ b/packages/react-native/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt @@ -10,7 +10,7 @@ file(GLOB react_featureflagsjni_SRCS CONFIGURE_DEPENDS *.cpp) add_library( react_featureflagsjni SHARED - ${featureflagsjni_SRCS} + ${react_featureflagsjni_SRCS} ) target_include_directories(react_featureflagsjni PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})