summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2019-11-20 19:32:07 +0100
committerMichael Meeks <michael.meeks@collabora.com>2020-01-03 12:31:30 +0100
commit7fc17a074b0ad753ff468f2023356cee5e08b13f (patch)
tree4caeebf25e733683b009cc63b9deaae0b7c8e9c0 /android
parentd495eb9f78fe72176c756e0c159d2edc04bec522 (diff)
android: fixup - the menu file was meant to go to the non-extracted assets
fixup from 93ee955c5359e283e2fe88e45b4c02a60525ed11 Change-Id: I94fa357e982bdf6a74bc182a51fb562ac39c0090 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86167 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'android')
-rw-r--r--android/source/build.gradle14
1 files changed, 7 insertions, 7 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle
index 03fe251d6a9b..b32cd3393065 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -149,13 +149,6 @@ task copyUnpackAssets(type: Copy) {
)
}
}
- // documents with manual page break trigger attempt to read the ui file
- // would trigger a css::container::NoSuchElementException with osl_File_E_NOENT
- // if not present and since it is not caught would crash the app...
- into('config') {
- from "${liboInstdir}/share/config"
- include '**/pagebreakmenu.ui'
- }
}
task copyAssets(type: Copy) {
@@ -185,6 +178,13 @@ task copyAssets(type: Copy) {
// those two get processed by mobile-config.py
excludes = ['registry/main.xcd', 'registry/res/registry_en-US.xcd']
}
+ // documents with manual page break trigger attempt to read the ui file
+ // would trigger a css::container::NoSuchElementException with osl_File_E_NOENT
+ // if not present and since it is not caught would crash the app...
+ into('config') {
+ from "${liboInstdir}/share/config"
+ include '**/pagebreakmenu.ui'
+ }
}
task createFullConfig(type: Copy) {