From 367431b6987b75e7a201499bfbd25a41c92a4a59 Mon Sep 17 00:00:00 2001 From: Michael Weghorn Date: Wed, 11 Mar 2020 14:48:32 +0100 Subject: tdf#126909 android: include icons into APK While default build config for Android Viewer caused the zip file(s) containing the icons to be built (e.g. 'distro-configs/LibreOfficeAndroid.conf' contains '--with-theme=colibre'), icons were not included in the APK. Do so now, which among others also makes page breaks shown in Android Viewer (as requested in tdf#126909). Change-Id: Ie16ff4b483287367b9f892ee614b3e5aa4d31820 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90330 Tested-by: Jenkins Reviewed-by: Michael Weghorn --- android/source/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'android/source') diff --git a/android/source/build.gradle b/android/source/build.gradle index 0ed1659e9081..525782abc606 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -159,6 +159,13 @@ task copyAssets(type: Copy) { from("${liboExampleDocument}") { rename ".*", "example.odt" } + + // include icons + into 'assets/share/config' + from ("${liboInstdir}/share/config") { + includes = ["images_**.zip", ] + } + into('program') { from "${liboInstdir}/program" includes = ['services.rdb', 'services/services.rdb'] -- cgit