sharewithtitle/build.gradle
Michel Roux e01d8c1813
Some checks failed
apk / build (push) Failing after 33s
Readd my Play Store version
2023-07-30 21:04:42 +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
}