Massive/android/build.gradle

21 lines
620 B
Groovy
Raw Normal View History

2022-06-30 06:50:52 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-07-05 00:43:04 +00:00
kotlin_version = '1.6.10'
buildToolsVersion = "33.0.0"
2022-06-30 06:50:52 +00:00
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
ndkVersion = "23.1.7779620"
2022-06-30 06:50:52 +00:00
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath('com.android.tools.build:gradle:7.3.1')
2022-06-30 06:50:52 +00:00
classpath("com.facebook.react:react-native-gradle-plugin")
2022-07-05 00:43:04 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2022-06-30 06:50:52 +00:00
}
}