diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2019-11-08 16:04:49 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2019-11-08 16:04:49 +0100 |
commit | 256e2a3de8af34e751a3fb8329f49f2f362342d1 (patch) | |
tree | 92da505dae4ba14c89bf7a64f9d2c1412d22758e | |
parent | 7719b7fb93d42d9ff524c869ba9e347ff040025c (diff) |
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
-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 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" |