@@ -20,7 +20,7 @@ import com.android.build.OutputFile
20
20
* // default. Can be overridden with ENTRY_FILE environment variable.
21
21
* entryFile: "index.android.js",
22
22
*
23
- * // https://facebook.github.io/react-native /docs/performance#enable-the-ram-format
23
+ * // https://reactnative.dev /docs/performance#enable-the-ram-format
24
24
* bundleCommand: "ram-bundle",
25
25
*
26
26
* // whether to bundle JS and assets in debug mode
@@ -114,16 +114,19 @@ def jscFlavor = 'org.webkit:android-jsc:+'
114
114
/**
115
115
* Whether to enable the Hermes VM.
116
116
*
117
- * This should be set on project.ext.react and mirrored here. If it is not set
117
+ * This should be set on project.ext.react and that value will be read here. If it is not set
118
118
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119
119
* and the benefits of using Hermes will therefore be sharply reduced.
120
120
*/
121
121
def enableHermes = project. ext. react. get(" enableHermes" , false );
122
122
123
123
/**
124
- * Architectures to build native code for in debug .
124
+ * Architectures to build native code for.
125
125
*/
126
- def nativeArchitectures = project. getProperties(). get(" reactNativeDebugArchitectures" )
126
+ def reactNativeArchitectures () {
127
+ def value = project. getProperties(). get(" reactNativeArchitectures" )
128
+ return value ? value. split(" ," ) : [" armeabi-v7a" , " x86" , " x86_64" , " arm64-v8a" ]
129
+ }
127
130
128
131
android {
129
132
ndkVersion rootProject. ext. ndkVersion
@@ -136,13 +139,82 @@ android {
136
139
targetSdkVersion rootProject. ext. targetSdkVersion
137
140
versionCode 1
138
141
versionName " 1.0"
142
+ buildConfigField " boolean" , " IS_NEW_ARCHITECTURE_ENABLED" , isNewArchitectureEnabled(). toString()
143
+
144
+ if (isNewArchitectureEnabled()) {
145
+ // We configure the NDK build only if you decide to opt-in for the New Architecture.
146
+ externalNativeBuild {
147
+ ndkBuild {
148
+ arguments " APP_PLATFORM=android-21" ,
149
+ " APP_STL=c++_shared" ,
150
+ " NDK_TOOLCHAIN_VERSION=clang" ,
151
+ " GENERATED_SRC_DIR=$buildDir /generated/source" ,
152
+ " PROJECT_BUILD_DIR=$buildDir " ,
153
+ " REACT_ANDROID_DIR=$rootDir /../node_modules/react-native/ReactAndroid" ,
154
+ " REACT_ANDROID_BUILD_DIR=$rootDir /../node_modules/react-native/ReactAndroid/build" ,
155
+ " NODE_MODULES_DIR=$rootDir /../node_modules"
156
+ cFlags " -Wall" , " -Werror" , " -fexceptions" , " -frtti" , " -DWITH_INSPECTOR=1"
157
+ cppFlags " -std=c++17"
158
+ // Make sure this target name is the same you specify inside the
159
+ // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable.
160
+ targets " rnpermissionsexample_appmodules"
161
+ }
162
+ }
163
+ if (! enableSeparateBuildPerCPUArchitecture) {
164
+ ndk {
165
+ abiFilters (* reactNativeArchitectures())
166
+ }
167
+ }
168
+ }
139
169
}
170
+
171
+ if (isNewArchitectureEnabled()) {
172
+ // We configure the NDK build only if you decide to opt-in for the New Architecture.
173
+ externalNativeBuild {
174
+ ndkBuild {
175
+ path " $projectDir /src/main/jni/Android.mk"
176
+ }
177
+ }
178
+ def reactAndroidProjectDir = project(' :ReactAndroid' ). projectDir
179
+ def packageReactNdkDebugLibs = tasks. register(" packageReactNdkDebugLibs" , Copy ) {
180
+ dependsOn(" :ReactAndroid:packageReactNdkDebugLibsForBuck" )
181
+ from(" $reactAndroidProjectDir /src/main/jni/prebuilt/lib" )
182
+ into(" $buildDir /react-ndk/exported" )
183
+ }
184
+ def packageReactNdkReleaseLibs = tasks. register(" packageReactNdkReleaseLibs" , Copy ) {
185
+ dependsOn(" :ReactAndroid:packageReactNdkReleaseLibsForBuck" )
186
+ from(" $reactAndroidProjectDir /src/main/jni/prebuilt/lib" )
187
+ into(" $buildDir /react-ndk/exported" )
188
+ }
189
+ afterEvaluate {
190
+ // If you wish to add a custom TurboModule or component locally,
191
+ // you should uncomment this line.
192
+ // preBuild.dependsOn("generateCodegenArtifactsFromSchema")
193
+ preDebugBuild. dependsOn(packageReactNdkDebugLibs)
194
+ preReleaseBuild. dependsOn(packageReactNdkReleaseLibs)
195
+
196
+ // Due to a bug inside AGP, we have to explicitly set a dependency
197
+ // between configureNdkBuild* tasks and the preBuild tasks.
198
+ // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732
199
+ configureNdkBuildRelease. dependsOn(preReleaseBuild)
200
+ configureNdkBuildDebug. dependsOn(preDebugBuild)
201
+ reactNativeArchitectures(). each { architecture ->
202
+ tasks. findByName(" configureNdkBuildDebug[${ architecture} ]" )?. configure {
203
+ dependsOn(" preDebugBuild" )
204
+ }
205
+ tasks. findByName(" configureNdkBuildRelease[${ architecture} ]" )?. configure {
206
+ dependsOn(" preReleaseBuild" )
207
+ }
208
+ }
209
+ }
210
+ }
211
+
140
212
splits {
141
213
abi {
142
214
reset()
143
215
enable enableSeparateBuildPerCPUArchitecture
144
216
universalApk false // If true, also generate a universal APK
145
- include " armeabi-v7a " , " x86 " , " arm64-v8a " , " x86_64 "
217
+ include ( * reactNativeArchitectures())
146
218
}
147
219
}
148
220
signingConfigs {
@@ -156,28 +228,16 @@ android {
156
228
buildTypes {
157
229
debug {
158
230
signingConfig signingConfigs. debug
159
- if (nativeArchitectures) {
160
- ndk {
161
- abiFilters nativeArchitectures. split(' ,' )
162
- }
163
- }
164
231
}
165
232
release {
166
233
// Caution! In production, you need to generate your own keystore file.
167
- // see https://facebook.github.io/react-native /docs/signed-apk-android.
234
+ // see https://reactnative.dev /docs/signed-apk-android.
168
235
signingConfig signingConfigs. debug
169
236
minifyEnabled enableProguardInReleaseBuilds
170
237
proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
171
238
}
172
239
}
173
240
174
- packagingOptions {
175
- pickFirst " lib/armeabi-v7a/libc++_shared.so"
176
- pickFirst " lib/arm64-v8a/libc++_shared.so"
177
- pickFirst " lib/x86/libc++_shared.so"
178
- pickFirst " lib/x86_64/libc++_shared.so"
179
- }
180
-
181
241
// applicationVariants are e.g. debug, release
182
242
applicationVariants. all { variant ->
183
243
variant. outputs. each { output ->
@@ -197,32 +257,51 @@ android {
197
257
198
258
dependencies {
199
259
implementation fileTree(dir : " libs" , include : [" *.jar" ])
260
+
200
261
// noinspection GradleDynamicVersion
201
- implementation " com.facebook.react:react-native:+" // From node_modules
262
+ implementation " com.facebook.react:react-native:+" // From node_modules
202
263
203
- implementation " androidx.swiperefreshlayout:swiperefreshlayout:1.1 .0"
264
+ implementation " androidx.swiperefreshlayout:swiperefreshlayout:1.0 .0"
204
265
205
266
debugImplementation(" com.facebook.flipper:flipper:${ FLIPPER_VERSION} " ) {
206
267
exclude group :' com.facebook.fbjni'
207
268
}
208
269
209
270
debugImplementation(" com.facebook.flipper:flipper-network-plugin:${ FLIPPER_VERSION} " ) {
210
271
exclude group :' com.facebook.flipper'
272
+ exclude group :' com.squareup.okhttp3' , module :' okhttp'
211
273
}
212
274
213
275
debugImplementation(" com.facebook.flipper:flipper-fresco-plugin:${ FLIPPER_VERSION} " ) {
214
276
exclude group :' com.facebook.flipper'
215
277
}
216
278
217
279
if (enableHermes) {
218
- def hermesPath = " ../../node_modules/hermes-engine/android/" ;
219
- debugImplementation files(hermesPath + " hermes-debug.aar" )
220
- releaseImplementation files(hermesPath + " hermes-release.aar" )
280
+ // noinspection GradleDynamicVersion
281
+ implementation(" com.facebook.react:hermes-engine:+" ) { // From node_modules
282
+ exclude group :' com.facebook.fbjni'
283
+ }
221
284
} else {
222
285
implementation jscFlavor
223
286
}
224
287
}
225
288
289
+ if (isNewArchitectureEnabled()) {
290
+ // If new architecture is enabled, we let you build RN from source
291
+ // Otherwise we fallback to a prebuilt .aar bundled in the NPM package.
292
+ // This will be applied to all the imported transtitive dependency.
293
+ configurations. all {
294
+ resolutionStrategy. dependencySubstitution {
295
+ substitute(module(" com.facebook.react:react-native" ))
296
+ .using(project(" :ReactAndroid" ))
297
+ .because(" On New Architecture we're building React Native from source" )
298
+ substitute(module(" com.facebook.react:hermes-engine" ))
299
+ .using(project(" :ReactAndroid:hermes-engine" ))
300
+ .because(" On New Architecture we're building Hermes from source" )
301
+ }
302
+ }
303
+ }
304
+
226
305
// Run this once to be able to run the application with BUCK
227
306
// puts all compile dependencies into folder libs for BUCK to use
228
307
task copyDownloadableDepsToLibs (type : Copy ) {
@@ -231,3 +310,11 @@ task copyDownloadableDepsToLibs(type: Copy) {
231
310
}
232
311
233
312
apply from : file(" ../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle" ); applyNativeModulesAppBuildGradle(project)
313
+
314
+ def isNewArchitectureEnabled () {
315
+ // To opt-in for the New Architecture, you can either:
316
+ // - Set `newArchEnabled` to true inside the `gradle.properties` file
317
+ // - Invoke gradle with `-newArchEnabled=true`
318
+ // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
319
+ return project. hasProperty(" newArchEnabled" ) && project. newArchEnabled == " true"
320
+ }
0 commit comments