[Libreoffice-commits] core.git: android/source

Christian Lohmaier (via logerrit) logerrit at kemper.freedesktop.org
Wed Nov 20 18:39:08 UTC 2019


 android/source/build.gradle |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 03e9ae0a10bfcc91e646b67b032c1fb7b26da0d3
Author:     Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
AuthorDate: Wed Nov 20 19:32:07 2019 +0100
Commit:     Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
CommitDate: Wed Nov 20 19:36:08 2019 +0100

    android: fixup - the menu file was meant to go to the non-extracted assets
    
    fixup from 93ee955c5359e283e2fe88e45b4c02a60525ed11
    
    Change-Id: I94fa357e982bdf6a74bc182a51fb562ac39c0090

diff --git a/android/source/build.gradle b/android/source/build.gradle
index 5ca9a02a4973..c8fc939c0a64 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) {
@@ -190,6 +183,13 @@ task copyAssets(type: Copy) {
             include '*.data'
         }
     }
+    // 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) {


More information about the Libreoffice-commits mailing list