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:
parent
f1776b9267
commit
5f9e088fe6
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -8,4 +8,5 @@ ext {
|
|||
liboVersionMajor = '@LOOLWSD_VERSION_MAJOR@'
|
||||
liboVersionMinor = '@LOOLWSD_VERSION_MAJOR@'
|
||||
liboGitFullCommit = '@LOOLWSD_VERSION_HASH@'
|
||||
liboApplicationId = '@ANDROID_PACKAGE_NAME@'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue