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

26 lines
414 B
Groovy
Raw Normal View History

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath('com.android.tools.build:gradle:8.8.0')
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
}
2023-07-31 23:04:22 +02:00
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
2023-07-31 23:04:22 +02:00
tasks.withType(JavaCompile).configureEach {
options.deprecation = true
2021-08-08 22:58:08 +02:00
}