This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/android/build.gradle

30 lines
566 B
Groovy
Raw Normal View History

2018-09-14 16:59:13 +00:00
buildscript {
2021-03-08 06:06:07 +00:00
ext.kotlin_version = '1.4.31'
2018-09-14 16:59:13 +00:00
repositories {
google()
jcenter()
}
dependencies {
2021-03-08 06:06:07 +00:00
classpath 'com.android.tools.build:gradle:4.1.2'
2018-09-14 16:59:13 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}