[Libreoffice-commits] core.git: android/source
Christian Lohmaier (via logerrit)
logerrit at kemper.freedesktop.org
Fri Nov 8 15:09:38 UTC 2019
android/source/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 256e2a3de8af34e751a3fb8329f49f2f362342d1
Author: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
AuthorDate: Fri Nov 8 16:04:49 2019 +0100
Commit: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
CommitDate: Fri Nov 8 16:04:49 2019 +0100
tdf#127540 android: fix type-detection error when trying About|Show License
it is a bogus message and should have been "no such file or directory"
instead... license.txt wasn't shipped after the change to generate it
from xml/single-source.
Change-Id: I907a57ec359cf31ddc7967af2acd11ef3ff605eb
diff --git a/android/source/build.gradle b/android/source/build.gradle
index 9d9e35f18a69..fe7ac2d30afe 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -154,7 +154,7 @@ task copyUnpackAssets(type: Copy) {
task copyAssets(type: Copy) {
description "copies assets that can be accessed within the installed apk"
into 'assets'
- from("${liboSrcRoot}/readlicense_oo/license/") {
+ from("${liboInstdir}") {
includes = ["LICENSE", "NOTICE"]
rename "LICENSE", "license.txt"
rename "NOTICE", "notice.txt"
More information about the Libreoffice-commits
mailing list