mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
53c8fc9488
Summary: - Fix: https://github.com/facebook/react-native/issues/34103 - Follow-up: https://github.com/facebook/react-native/pull/33817 ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [Android] [Changed] - Bump Android Gradle Plugin to 7.2.1 Pull Request resolved: https://github.com/facebook/react-native/pull/34166 Test Plan: Everything builds and runs as expected Reviewed By: javache Differential Revision: D37747754 Pulled By: cortinico fbshipit-source-id: b51f26d773ddfbdaf4490f89f3b207a41b225a82
73 lines
2.9 KiB
Plaintext
73 lines
2.9 KiB
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
val ndkPath by extra(System.getenv("ANDROID_NDK"))
|
|
val ndkVersion by extra(System.getenv("ANDROID_NDK_VERSION"))
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.2.1")
|
|
classpath("de.undercouch:gradle-download-task:5.0.1")
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven { url = uri("$rootDir/node_modules/jsc-android/dist") }
|
|
maven { url = uri("$rootDir/android") }
|
|
google()
|
|
mavenCentral {
|
|
// We don't want to fetch react-native from Maven Central as there are
|
|
// older versions over there.
|
|
content { excludeGroup("com.facebook.react") }
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register("cleanAll", Delete::class.java) {
|
|
description = "Remove all the build files and intermediate build outputs"
|
|
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":clean"))
|
|
delete(allprojects.map { it.buildDir })
|
|
delete(rootProject.file("./ReactAndroid/.cxx"))
|
|
delete(rootProject.file("./ReactAndroid/hermes-engine/.cxx"))
|
|
delete(rootProject.file("./sdks/download/"))
|
|
delete(rootProject.file("./sdks/hermes/"))
|
|
delete(rootProject.file("./ReactAndroid/src/main/jni/prebuilt/lib/arm64-v8a/"))
|
|
delete(rootProject.file("./ReactAndroid/src/main/jni/prebuilt/lib/armeabi-v7a/"))
|
|
delete(rootProject.file("./ReactAndroid/src/main/jni/prebuilt/lib/x86/"))
|
|
delete(rootProject.file("./ReactAndroid/src/main/jni/prebuilt/lib/x86_64/"))
|
|
delete(rootProject.file("./packages/react-native-codegen/lib"))
|
|
delete(rootProject.file("./packages/rn-tester/android/app/.cxx"))
|
|
}
|
|
|
|
tasks.register("buildAll") {
|
|
description = "Build and test all the React Native relevant projects."
|
|
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":build"))
|
|
// This builds both the React Native framework for both debug and release
|
|
dependsOn(":ReactAndroid:assemble")
|
|
// This creates all the Maven artifacts and makes them available in the /android folder
|
|
dependsOn(":ReactAndroid:installArchives")
|
|
// This builds RN Tester for Hermes/JSC for debug only
|
|
dependsOn(":packages:rn-tester:android:app:assembleDebug")
|
|
}
|
|
|
|
tasks.register("downloadAll") {
|
|
description = "Download all the depedencies needed locally so they can be cached on CI."
|
|
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":dependencies"))
|
|
dependsOn(":ReactAndroid:downloadNdkBuildDependencies")
|
|
dependsOn(":ReactAndroid:dependencies")
|
|
dependsOn(":ReactAndroid:androidDependencies")
|
|
dependsOn(":ReactAndroid:hermes-engine:dependencies")
|
|
dependsOn(":ReactAndroid:hermes-engine:androidDependencies")
|
|
}
|