mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1333e0ee6a
Summary: X-link: https://github.com/facebook/yoga/pull/1692 Pull Request resolved: https://github.com/facebook/react-native/pull/46235 Update compileSdk to 35 before adding relating work for Android 15 Changelog: [Android][Added] - Update compileSdk to 35 Reviewed By: cortinico Differential Revision: D61874541 fbshipit-source-id: f7c92dc15aa68a53bcd626450c515d2f24e9e40f
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 = "35.0.0"
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 35
|
|
targetSdkVersion = 34
|
|
ndkVersion = "26.1.10909125"
|
|
kotlinVersion = "1.9.24"
|
|
}
|
|
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"
|