[Android] Change the version name for VLC 4
Nicolas Pomepuy
git at videolan.org
Mon Oct 3 11:10:29 UTC 2022
vlc-android | branch: master | Nicolas Pomepuy <nicolas at videolabs.io> | Wed Sep 28 07:34:02 2022 +0200| [bd06f530d80b0951bcc4c2dfce9357ea7cb6f14b] | committer: Duncan McNamara
Change the version name for VLC 4
> https://code.videolan.org/videolan/vlc-android/commit/bd06f530d80b0951bcc4c2dfce9357ea7cb6f14b
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index 2cba0c6f0..e60e47fdf 100644
--- a/build.gradle
+++ b/build.gradle
@@ -38,8 +38,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
- versionName = '3.5.2'
versionCode = 3050200
+ versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.5.2'
vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
libvlcVersion = vlcMajorVersion == 3 ? '3.5.2-eap1' :'4.0.0-eap2'
medialibraryVersion = vlcMajorVersion == 3 ? '0.13.4-eap1' : '0.12.0-vlc4-eap2'
More information about the Android
mailing list