mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
48ea6867a9
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/47738 - updating targetSdk to 35 for RN Android and helloworld - **Note:** `tagetSdk` of RN Android does not have effect on the app's targetSdk. App can set `targetSdk` regardless of what RN targetSdk is. Updating the targetSdk just signals that RN Android has been tested with targetSdk 35 and apps can choose to support lower targetSdk as needed. Changelog: [Android][Changed] updating targetSdk to 35 (apps can still choose their own targetSdk regardless of RN version) Reviewed By: NickGerleman Differential Revision: D66209381 fbshipit-source-id: 2f26e8f605a383ff662e4b1d65611f186a7d7979
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 = 35
|
|
ndkVersion = "27.1.12297006"
|
|
kotlinVersion = "2.0.21"
|
|
}
|
|
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"
|