SetAsWallpaper/build.gradle
Michel Roux 3431519c1a
All checks were successful
apk / build (push) Successful in 1m26s
Small typos
2023-07-31 23:04:22 +02:00

26 lines
414 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath('com.android.tools.build:gradle:8.1.0')
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
tasks.withType(JavaCompile).configureEach {
options.deprecation = true
}