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 1ead66570c
Some checks failed
continuous-integration/drone/pr Build is failing
Update kotlin_version
2021-11-14 21:01:27 +00:00

30 lines
565 B
Groovy

buildscript {
ext.kotlin_version = '1.6.0'
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
}