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 {
|
2023-02-09 11:52:41 +01:00
|
|
|
buildToolsVersion = "33.0.0"
|
2023-10-05 10:56:30 +02:00
|
|
|
minSdkVersion = 26
|
2023-02-09 11:52:41 +01:00
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
|
|
|
ndkVersion = "23.1.7779620"
|
2021-02-19 16:07:53 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-08-20 11:53:40 +02:00
|
|
|
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')
|
2023-02-09 11:52:41 +01:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2023-10-03 11:33:48 +02:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
|
2021-02-19 16:07:53 +01:00
|
|
|
}
|
|
|
|
}
|