mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
281f48daf4
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52141 This is to make sure we're using buildTools 36 (Android 16) to compile everything. Changelog: [Internal] [Changed] - Reviewed By: rshest Differential Revision: D77014531 fbshipit-source-id: 65b16abce7f88c4a4c0b8b1b77e632cff2e64197
29 lines
738 B
Groovy
29 lines
738 B
Groovy
/*
|
|
* 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.
|
|
*/
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "36.0.0"
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 36
|
|
targetSdkVersion = 35
|
|
ndkVersion = "27.1.12297006"
|
|
kotlinVersion = "2.1.20"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle")
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.facebook.react.rootproject"
|