Rename ElementX to Element X. Only for user facing value. In the doc I prefer to keep ElementX.

This commit is contained in:
Benoit Marty
2023-06-27 16:37:17 +02:00
committed by Benoit Marty
parent 6174a36d66
commit f84b2ebbb0
4 changed files with 6 additions and 8 deletions

View File

@@ -92,13 +92,13 @@ android {
buildTypes {
named("debug") {
resValue("string", "app_name", "ElementX dbg")
resValue("string", "app_name", "Element X dbg")
applicationIdSuffix = ".debug"
signingConfig = signingConfigs.getByName("debug")
}
named("release") {
resValue("string", "app_name", "ElementX")
resValue("string", "app_name", "Element X")
signingConfig = signingConfigs.getByName("debug")
postprocessing {
@@ -115,7 +115,7 @@ android {
initWith(release)
applicationIdSuffix = ".nightly"
versionNameSuffix = "-nightly"
resValue("string", "app_name", "ElementX nightly")
resValue("string", "app_name", "Element X nightly")
matchingFallbacks += listOf("release")
signingConfig = signingConfigs.getByName("nightly")