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
This commit is contained in:
Christian Lohmaier
2019-11-08 16:04:49 +01:00
parent 7719b7fb93
commit 256e2a3de8

View File

@@ -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"