Files
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

31 lines
668 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.12.0'
classpath 'com.google.gms:google-services:4.4.3'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
mavenLocal()
}
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
tasks.register('clean', Delete) {
delete getLayout().getBuildDirectory()
}