android/source/build.gradle |    1 -
 1 file changed, 1 deletion(-)

New commits:
commit ff3fb42b48c70ba5788507a6177bf0a9f3b50fdb
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Tue Nov 7 17:27:49 2023 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Tue Nov 7 22:17:35 2023 +0100

    android: Don't add "-editing" suffix to version/vendor
    
    Don't append "-editing" to the version string, which
    would then end up to be something like
    "24.2.0.0.alpha0+/7763190f7ec2/The Document Foundation-editing"
    when the build was configured with
    `--with-vendor="The Document Foundation"` and would result
    in the "About" dialog/widget saying
    "This release was supplied by The Document Foundation-editing."
    (s. `AboutDialogFragment#onCreateDialog`).
    
    While it's useful to have the different build flavors
    (with or without the experimental editing support), I see no need
    to have the build config reflected in the version string.
    (Whether experimental editing support was enabled during the
    build can easily be seen by checking whether the "Experimental
    Mode" option is available in the settings.)
    
    Change-Id: I48ddb3a842b9db4fc1f435683ed9d8e8e85898ed
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159079
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/android/source/build.gradle b/android/source/build.gradle
index f4f74338284c..f207ddedf267 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -82,7 +82,6 @@ android {
         strippedUIEditing {
             dimension "default"
             buildConfigField 'boolean', 'ALLOW_EDITING', 'true'
-            versionNameSuffix "-editing"
         }
         fullUI.dimension "default"
     }

Reply via email to