summaryrefslogtreecommitdiff
path: root/android/app
diff options
context:
space:
mode:
authorHenry Castro <hcastro@collabora.com>2020-05-27 12:43:29 -0400
committerHenry Castro <hcastro@collabora.com>2020-06-11 21:00:45 +0200
commit132bef2a972647b310fbf88a5e97b0789ad1ce14 (patch)
treecb9bc5d60190132d54f31c20e3b27559e76e7bf2 /android/app
parent9928143e05099dc968a22b216aa59a60a2e16ab5 (diff)
android: generate debug and release loleaflet assets
Change-Id: If3659de771b3d1f7015c1e4c26d6877f90afe306 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/94996 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle6
1 files changed, 0 insertions, 6 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 1b4848bd0..3d364a40e 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -83,16 +83,10 @@ task copyBrandFiles(type: Copy) {
into "src/main/res"
}
-task generateLoleafletAssets(type: Exec) {
- commandLine 'make', '-C', '../../'
-}
-
afterEvaluate {
if (!project.ext.liboHasBranding.equals("true") || !file("${liboBrandingDir}").exists()) {
copyBrandFiles.enabled = false
}
preBuild.dependsOn copyBrandFiles
- generateDebugAssets.dependsOn generateLoleafletAssets
- generateReleaseAssets.dependsOn generateLoleafletAssets
}