[Android] gradle: fix displayed version

Steve Lhomme git at videolan.org
Thu Feb 19 13:52:15 UTC 2026


vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Feb 19 14:44:49 2026 +0100| [0f0267c91ec0f9a731add6f319d7dce769ee5e74] | committer: Steve Lhomme

gradle: fix displayed version

The VLC 3 and 4 values are inverted since 316528618b1ed7a1cfb7b8ae8d1e488dced0d6f2.

> https://code.videolan.org/videolan/vlc-android/commit/0f0267c91ec0f9a731add6f319d7dce769ee5e74
---

 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 2ae3b07ff5..6b27bb00ad 100644
--- a/build.gradle
+++ b/build.gradle
@@ -45,7 +45,7 @@ ext {
     appId = "org.videolan.vlc"
     versionCode = 3060550
     vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
-    versionName = vlcMajorVersion == 3 ? '4.0.0-preview - ' + versionCode : '3.7.0 Beta 4'
+    versionName = vlcMajorVersion == 3 ? '3.7.0 Beta 4' : '4.0.0-preview - ' + versionCode
     remoteAccessVersion = '0.11.0'
     libvlcVersion = vlcMajorVersion == 3 ? '3.6.5' :'4.0.0-eap23'
     medialibraryVersion = '0.13.16' + (vlcMajorVersion == 3 ? '' : '-vlc4') + '-rc20'



More information about the Android mailing list