diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-01-16 16:07:11 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-01-17 06:17:42 +0000 |
commit | bcce2205313b6c3a427d0ab12b65526a577fe996 (patch) | |
tree | 85b03a4c83905a9b0673a95cb95ecb6309347f69 /android | |
parent | 48916eb11bea29ac2f7963d779b18491d6015737 (diff) |
tdf#153009 android: Include more doc layout related XML files
instdir/share/config/soffice.cfg/simpress/objectlist.xml
contains default positions for elements that are used
in new Impress presentations, but that file wasn't
included in the Android app/APK previously, so
couldn't be read from in `SdDrawDocument::InitObjectVector`.
As a result, the title and text were misplaced when creating a
new presentation in Android Viewer.
Include all of the related Impress XML files into the app to
make this work as expected.
(At least a failed attempt to read from `layoutlist.xml`
was also observed while debugging the issue mentioned
above.)
Change-Id: Iba1ac68c0b983d3e465515f07b3fc67162a0ee3f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145621
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle index 245d1c41d71e..b31b82eb1120 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -149,7 +149,7 @@ task copyAssets(type: Copy) { into ('config') { from ("${liboInstdir}/share/config") includes = ['images_**.zip', - '**/simpress/styles.xml', + '**/simpress/**.xml', '**/annotation.ui', '**/hfmenubutton.ui', '**/inforeadonlydialog.ui', |