android: Replace the value in fonts with real name instead of 'null'.

Change-Id: Iefb5737662eb5463429951c815e5bb0891abd875
Reviewed-on: https://gerrit.libreoffice.org/84313
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Tested-by: Jan Holesovsky <kendy@collabora.com>
This commit is contained in:
Jan Holesovsky 2019-12-03 10:39:51 +01:00
parent f1776b9267
commit 5f9e088fe6
2 changed files with 2 additions and 1 deletions

View file

@ -93,7 +93,7 @@ task copyUnpackAssets(type: Copy) {
filter {
String line ->
line.replaceAll(
'@@APPLICATION_ID@@', new String("${android.defaultConfig.applicationId}")
'@@APPLICATION_ID@@', new String("${liboApplicationId}")
).replaceAll(
// FIXME Avoid the Android system fonts for the moment,
// the huge Noto Sans fonts have terrible impact on the 1st

View file

@ -8,4 +8,5 @@ ext {
liboVersionMajor = '@LOOLWSD_VERSION_MAJOR@'
liboVersionMinor = '@LOOLWSD_VERSION_MAJOR@'
liboGitFullCommit = '@LOOLWSD_VERSION_HASH@'
liboApplicationId = '@ANDROID_PACKAGE_NAME@'
}