0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00
BinaryEye/build.gradle

33 lines
553 B
Groovy
Raw Normal View History

2017-08-27 15:03:22 +02:00
buildscript {
ext {
2024-09-17 22:37:08 +02:00
kotlin_version = '2.0.20'
tools_version = '8.5.1'
2023-11-01 18:12:57 +01:00
sdk_version = 34
support_version = '25.3.1'
}
2017-08-27 15:03:22 +02:00
repositories {
2017-12-08 22:07:05 +01:00
google()
mavenCentral()
2017-08-27 15:03:22 +02:00
}
dependencies {
classpath "com.android.tools.build:gradle:$tools_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:unchecked"
}
2017-08-27 15:03:22 +02:00
}
}
}
tasks.register('clean', Delete) {
2017-08-27 15:03:22 +02:00
delete rootProject.buildDir
}