[Android] gradle: set the aidl with =
Steve Lhomme
git at videolan.org
Mon Jul 21 16:26:17 UTC 2025
vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Jul 3 07:32:34 2025 +0200| [acea4f131619fc6ff422e18194c7985ca0308fd1] | committer: Duncan McNamara
gradle: set the aidl with =
The old way is marked as deprecated.
> Properties should be assigned using the 'propName = value' syntax. Setting a
> property via the Gradle-generated 'propName value' or 'propName(value)'
> syntax in Groovy DSL has been deprecated.
> https://code.videolan.org/videolan/vlc-android/commit/acea4f131619fc6ff422e18194c7985ca0308fd1
---
application/donations/build.gradle | 2 +-
application/vlc-android/build.gradle | 2 +-
medialibrary/build.gradle | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/application/donations/build.gradle b/application/donations/build.gradle
index deb889fae2..b248a59dd5 100644
--- a/application/donations/build.gradle
+++ b/application/donations/build.gradle
@@ -70,7 +70,7 @@ android {
}
namespace = 'org.videolan.vlc.donations'
buildFeatures {
- aidl true
+ aidl = true
buildConfig = true
}
}
diff --git a/application/vlc-android/build.gradle b/application/vlc-android/build.gradle
index e3da744b4a..2747b381cf 100644
--- a/application/vlc-android/build.gradle
+++ b/application/vlc-android/build.gradle
@@ -121,7 +121,7 @@ android {
namespace = 'org.videolan.vlc'
buildFeatures {
renderScript true
- aidl true
+ aidl = true
buildConfig = true
}
}
diff --git a/medialibrary/build.gradle b/medialibrary/build.gradle
index f838cf8d17..5d835b8526 100644
--- a/medialibrary/build.gradle
+++ b/medialibrary/build.gradle
@@ -77,7 +77,7 @@ android {
}
buildFeatures {
renderScript true
- aidl true
+ aidl = true
}
// Make per-variant version code
More information about the Android
mailing list