SetAsWallpaper/build.gradle
Michel Roux 6fb22f722f
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Rollback SDK and add deprecation warning
2022-09-19 20:01:08 +02:00

28 lines
616 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
tasks.withType(JavaCompile) {
options.deprecation = true
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}