libreoffice-online/android/build.gradle.in
Henry Castro e7c75fda31 android: clean debug and release assets
Change-Id: I3e6c53f6d82169ba5a529a63bae9256fb43d69ed
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/95332
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro@collabora.com>
2020-06-11 21:34:21 +02:00

30 lines
615 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildDir = "@builddir@/build"
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
afterEvaluate {
clean.dependsOn(':lib:clean')
}