Readrops/build.gradle

38 lines
819 B
Groovy
Raw Normal View History

2019-01-12 13:10:02 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-04-14 18:42:41 +02:00
ext.kotlin_version = '1.4.32'
2019-09-14 12:56:10 +02:00
2019-01-12 13:10:02 +01:00
repositories {
google()
2021-07-02 18:56:11 +02:00
mavenCentral()
2019-01-12 13:10:02 +01:00
}
dependencies {
2021-07-03 19:29:42 +02:00
classpath 'com.android.tools.build:gradle:4.2.2'
2019-09-14 12:56:10 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2019-01-12 13:10:02 +01:00
}
}
allprojects {
repositories {
google()
2019-09-14 12:56:10 +02:00
mavenCentral()
maven { url 'https://jitpack.io' }
2019-01-12 13:10:02 +01:00
}
afterEvaluate {
tasks.withType(JavaCompile.class) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
2019-01-12 13:10:02 +01:00
}
ext {
2021-07-03 19:34:37 +02:00
compileSdkVersion = 30
minSdkVersion = 21
2021-07-03 19:34:37 +02:00
targetSdkVersion = 30
buildToolsVersion = "30.0.3"
}
2019-01-12 13:10:02 +01:00
task clean(type: Delete) {
delete rootProject.buildDir
2019-05-10 10:25:16 +02:00
}