This repository has been archived on 2025-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
SetAsWallpaper/build.gradle
2025-01-10 00:03:46 +00:00

26 lines
414 B
Groovy

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