mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Specify a NODE_MODULES_DIR inside the NDK config for the Android template
Summary: I'm just adding a macro passing the NODE_MODULES_DIR to the NDK build. This will make easier to import external libraries for our users. Changelog: [Internal] [Changed] - Specify a NODE_MODULES_DIR inside the NDK config for the Android template Reviewed By: cipolleschi Differential Revision: D35451821 fbshipit-source-id: 5d79359a1610f2de4ec2d50a78b4c930458185d8
This commit is contained in:
committed by
Facebook GitHub Bot
parent
88814d52dd
commit
f8d7e0a968
@@ -151,7 +151,8 @@ android {
|
||||
"GENERATED_SRC_DIR=$buildDir/generated/source",
|
||||
"PROJECT_BUILD_DIR=$buildDir",
|
||||
"REACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid",
|
||||
"REACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build"
|
||||
"REACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build",
|
||||
"NODE_MODULES_DIR=$rootDir/../node_modules"
|
||||
cFlags "-Wall", "-Werror", "-fexceptions", "-frtti", "-DWITH_INSPECTOR=1"
|
||||
cppFlags "-std=c++17"
|
||||
// Make sure this target name is the same you specify inside the
|
||||
|
||||
Reference in New Issue
Block a user