0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 03:52:16 +02:00
BinaryEye/build.gradle

37 lines
601 B
Groovy
Raw Normal View History

2017-08-27 15:03:22 +02:00
buildscript {
ext {
2021-12-04 19:35:54 +01:00
kotlin_version = '1.6.0'
2021-12-10 19:45:45 +01:00
tools_version = '7.0.4'
2022-01-25 20:13:47 +01:00
sdk_version = 31
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 {
repositories {
2017-12-08 22:07:05 +01:00
google()
mavenCentral()
maven { url 'https://jitpack.io' }
2017-08-27 15:03:22 +02:00
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}