sharewithtitle/build.gradle

26 lines
414 B
Groovy
Raw Normal View History

2023-07-30 19:04:42 +00:00
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.4.0")
2023-07-30 19:04:42 +00:00
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
tasks.withType(JavaCompile).configureEach {
options.deprecation = true
}