21 lines
579 B
Groovy
Raw Normal View History

2021-02-19 16:07:53 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "33.0.0"
2023-10-05 10:56:30 +02:00
minSdkVersion = 26
compileSdkVersion = 33
targetSdkVersion = 33
ndkVersion = "23.1.7779620"
2021-02-19 16:07:53 +01:00
}
repositories {
google()
mavenCentral()
2021-02-19 16:07:53 +01:00
}
dependencies {
2023-07-03 22:21:02 +02:00
classpath('com.android.tools.build:gradle:7.4.1')
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
2021-02-19 16:07:53 +01:00
}
}