| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext {
- versionName = "3.3.0" //★★★★★版本号★★★★★
- buildToolsVersion = "34.0.0"
- minSdkVersion = 23
- compileSdkVersion = 34
- targetSdkVersion = 34
- kotlinVersion = "1.6.21"
- playServicesVersion = "17.0.0"
- firebaseMessagingVersion = "21.1.0"
- ndkVersion = "23.1.7779620"
- enableHermes = true
- }
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle:7.4.2")
- classpath("com.google.gms:google-services:4.3.15")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
- classpath("com.facebook.react:react-native-gradle-plugin")
- }
- }
- allprojects {
- repositories {
- mavenLocal()
- maven {
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
- url("$rootDir/../node_modules/react-native/android")
- }
- maven {
- // Android JSC is installed from npm
- url("$rootDir/../node_modules/jsc-android/dist")
- }
- google()
- jcenter()
- maven { url 'https://www.jitpack.io' }
- }
- }
- project.ext.react = [
- nodeExecutableAndArgs: ["node", "--max_old_space_size=8192"]
- ]
|