emu48android/build.gradle

34 lines
753 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2024-06-10 08:27:31 +02:00
mavenCentral()
}
dependencies {
2024-06-12 13:07:28 +02:00
classpath 'com.android.tools.build:gradle:8.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2024-06-10 08:27:31 +02:00
mavenCentral()
}
2024-06-10 08:27:31 +02:00
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
2024-06-10 08:27:31 +02:00
//task clean(type: Delete) {
// delete rootProject.buildDir
//}