2023-04-12 23:41:28 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext {
|
2024-07-04 04:44:43 -06:00
|
|
|
buildToolsVersion = "34.0.0"
|
2023-04-12 23:41:28 -06:00
|
|
|
minSdkVersion = 21
|
2024-07-04 04:44:43 -06:00
|
|
|
compileSdkVersion = 34
|
|
|
|
targetSdkVersion = 34
|
|
|
|
ndkVersion = "25.1.8937393"
|
|
|
|
kotlinVersion = "1.8.0"
|
2023-04-12 23:41:28 -06:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2024-07-04 04:44:43 -06:00
|
|
|
classpath("com.android.tools.build:gradle")
|
2023-04-12 23:41:28 -06:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
|
|
classpath("de.undercouch:gradle-download-task:5.0.1")
|
2024-07-04 04:44:43 -06:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
2023-04-12 23:41:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-04 04:44:43 -06:00
|
|
|
apply plugin: "com.facebook.react.rootproject"
|