| 123456789101112131415161718192021222324252627 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext {
- versionName = "4.0.0" //★★★★★版本号★★★★★
- buildToolsVersion = "35.0.1"
- minSdkVersion = 24
- compileSdkVersion = 35
- targetSdkVersion = 35
- kotlinVersion = "2.0.21"
- playServicesVersion = "17.0.0"
- firebaseMessagingVersion = "21.1.0"
- // NDK r27+ 支持 16KB 页面大小
- ndkVersion = "27.1.12297006"
- }
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle")
- classpath("com.facebook.react:react-native-gradle-plugin")
- classpath("com.google.gms:google-services:4.4.2")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
- }
- }
- apply plugin: "com.facebook.react.rootproject"
|