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
renovate ebcf0a907b
Some checks failed
continuous-integration/drone/pr Build is failing
Update kotlin_version
2021-10-15 20:01:54 +00:00

30 lines
566 B
Groovy

buildscript {
ext.kotlin_version = '1.5.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
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
}