mirror of
https://gitcode.com/gh_mirrors/re/react-native-pushy.git
synced 2025-09-16 10:31:39 +08:00
24 lines
635 B
Groovy
24 lines
635 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "34.0.0"
|
|
minSdkVersion = 23
|
|
compileSdkVersion = 34
|
|
targetSdkVersion = 34
|
|
ndkVersion = "26.1.10909125"
|
|
kotlinVersion = "1.9.24"
|
|
|
|
kotlin_version = '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")
|
|
}
|
|
}
|