[Android] buildsystem: add missing targetSdkVersion
Steve Lhomme
git at videolan.org
Thu Jun 26 13:27:00 UTC 2025
vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Jun 24 10:47:02 2025 +0200| [b8f869ce9a74cc9e2547f5c6474c9f73a1a53dc2] | committer: Steve Lhomme
buildsystem: add missing targetSdkVersion
So all defaultConfig are defined the same way.
> https://code.videolan.org/videolan/vlc-android/commit/b8f869ce9a74cc9e2547f5c6474c9f73a1a53dc2
---
application/resources/build.gradle | 1 +
1 file changed, 1 insertion(+)
diff --git a/application/resources/build.gradle b/application/resources/build.gradle
index 8187d3b544..5c17536de3 100644
--- a/application/resources/build.gradle
+++ b/application/resources/build.gradle
@@ -14,6 +14,7 @@ android {
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
compileSdk rootProject.ext.compileSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "APP_ID", "\"${rootProject.ext.appId}\""
More information about the Android
mailing list