@@ -133,9 +133,12 @@ def jscFlavor = 'org.webkit:android-jsc:+'
133
133
def enableHermes = project. ext. react. get(" enableHermes" , false );
134
134
135
135
/**
136
- * Architectures to build native code for in debug .
136
+ * Architectures to build native code for.
137
137
*/
138
- def nativeArchitectures = project. getProperties(). get(" reactNativeDebugArchitectures" )
138
+ def reactNativeArchitectures () {
139
+ def value = project. getProperties(). get(" reactNativeArchitectures" )
140
+ return value ? value. split(" ," ) : [" armeabi-v7a" , " x86" , " x86_64" , " arm64-v8a" ]
141
+ }
139
142
140
143
android {
141
144
ndkVersion rootProject. ext. ndkVersion
@@ -155,13 +158,73 @@ android {
155
158
file(" ../secure.properties" )?. withInputStream { secureProps. load(it) }
156
159
}
157
160
resValue " string" , " maps_api_key" , (secureProps. getProperty(" MAPS_API_KEY" ) ?: " " )
161
+ buildConfigField " boolean" , " IS_NEW_ARCHITECTURE_ENABLED" , isNewArchitectureEnabled(). toString()
162
+ if (isNewArchitectureEnabled()) {
163
+ // We configure the NDK build only if you decide to opt-in for the New Architecture.
164
+ externalNativeBuild {
165
+ ndkBuild {
166
+ arguments " APP_PLATFORM=android-21" ,
167
+ " APP_STL=c++_shared" ,
168
+ " NDK_TOOLCHAIN_VERSION=clang" ,
169
+ " GENERATED_SRC_DIR=$buildDir /generated/source" ,
170
+ " PROJECT_BUILD_DIR=$buildDir " ,
171
+ " REACT_ANDROID_DIR=$rootDir /../node_modules/react-native/ReactAndroid" ,
172
+ " REACT_ANDROID_BUILD_DIR=$rootDir /../node_modules/react-native/ReactAndroid/build"
173
+ cFlags " -Wall" , " -Werror" , " -fexceptions" , " -frtti" , " -DWITH_INSPECTOR=1"
174
+ cppFlags " -std=c++17"
175
+ // Make sure this target name is the same you specify inside the
176
+ // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable.
177
+ targets " rndiffapp_appmodules"
178
+ }
179
+ }
180
+ }
158
181
}
182
+ if (isNewArchitectureEnabled()) {
183
+ // We configure the NDK build only if you decide to opt-in for the New Architecture.
184
+ externalNativeBuild {
185
+ ndkBuild {
186
+ path " $projectDir /src/main/jni/Android.mk"
187
+ }
188
+ }
189
+ def reactAndroidProjectDir = project(' :ReactAndroid' ). projectDir
190
+ def packageReactNdkDebugLibs = tasks. register(" packageReactNdkDebugLibs" , Copy ) {
191
+ dependsOn(" :ReactAndroid:packageReactNdkDebugLibsForBuck" )
192
+ from(" $reactAndroidProjectDir /src/main/jni/prebuilt/lib" )
193
+ into(" $buildDir /react-ndk/exported" )
194
+ }
195
+ def packageReactNdkReleaseLibs = tasks. register(" packageReactNdkReleaseLibs" , Copy ) {
196
+ dependsOn(" :ReactAndroid:packageReactNdkReleaseLibsForBuck" )
197
+ from(" $reactAndroidProjectDir /src/main/jni/prebuilt/lib" )
198
+ into(" $buildDir /react-ndk/exported" )
199
+ }
200
+ afterEvaluate {
201
+ // If you wish to add a custom TurboModule or component locally,
202
+ // you should uncomment this line.
203
+ // preBuild.dependsOn("generateCodegenArtifactsFromSchema")
204
+ preDebugBuild. dependsOn(packageReactNdkDebugLibs)
205
+ preReleaseBuild. dependsOn(packageReactNdkReleaseLibs)
206
+ // Due to a bug inside AGP, we have to explicitly set a dependency
207
+ // between configureNdkBuild* tasks and the preBuild tasks.
208
+ // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732
209
+ configureNdkBuildRelease. dependsOn(preReleaseBuild)
210
+ configureNdkBuildDebug. dependsOn(preDebugBuild)
211
+ reactNativeArchitectures(). each { architecture ->
212
+ tasks. findByName(" configureNdkBuildDebug[${ architecture} ]" )?. configure {
213
+ dependsOn(" preDebugBuild" )
214
+ }
215
+ tasks. findByName(" configureNdkBuildRelease[${ architecture} ]" )?. configure {
216
+ dependsOn(" preReleaseBuild" )
217
+ }
218
+ }
219
+ }
220
+ }
221
+
159
222
splits {
160
223
abi {
161
224
reset()
162
225
enable enableSeparateBuildPerCPUArchitecture
163
226
universalApk false // If true, also generate a universal APK
164
- include " armeabi-v7a " , " x86 " , " arm64-v8a " , " x86_64 "
227
+ include ( * reactNativeArchitectures())
165
228
}
166
229
}
167
230
signingConfigs {
@@ -183,11 +246,6 @@ android {
183
246
buildTypes {
184
247
debug {
185
248
signingConfig signingConfigs. debug
186
- if (nativeArchitectures) {
187
- ndk {
188
- abiFilters nativeArchitectures. split(' ,' )
189
- }
190
- }
191
249
}
192
250
release {
193
251
// Add the firebaseCrashlytics extension (by default, it's disabled
@@ -227,6 +285,7 @@ android {
227
285
228
286
dependencies {
229
287
implementation fileTree(dir : " libs" , include : [" *.jar" ])
288
+
230
289
// noinspection GradleDynamicVersion
231
290
implementation " com.facebook.react:react-native:+" // From node_modules
232
291
@@ -257,6 +316,18 @@ dependencies {
257
316
}
258
317
}
259
318
319
+ if (isNewArchitectureEnabled()) {
320
+ // If new architecture is enabled, we let you build RN from source
321
+ // Otherwise we fallback to a prebuilt .aar bundled in the NPM package.
322
+ // This will be applied to all the imported transtitive dependency.
323
+ configurations. all {
324
+ resolutionStrategy. dependencySubstitution {
325
+ substitute(module(" com.facebook.react:react-native" ))
326
+ .using(project(" :ReactAndroid" )). because(" On New Architecture we're building React Native from source" )
327
+ }
328
+ }
329
+ }
330
+
260
331
// Run this once to be able to run the application with BUCK
261
332
// puts all compile dependencies into folder libs for BUCK to use
262
333
task copyDownloadableDepsToLibs (type : Copy ) {
@@ -265,3 +336,11 @@ task copyDownloadableDepsToLibs(type: Copy) {
265
336
}
266
337
267
338
apply from : file(" ../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle" ); applyNativeModulesAppBuildGradle(project)
339
+
340
+ def isNewArchitectureEnabled () {
341
+ // To opt-in for the New Architecture, you can either:
342
+ // - Set `newArchEnabled` to true inside the `gradle.properties` file
343
+ // - Invoke gradle with `-newArchEnabled=true`
344
+ // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
345
+ return project. hasProperty(" newArchEnabled" ) && project. newArchEnabled == " true"
346
+ }
0 commit comments