aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzard <fuzzard@users.noreply.github.com>2024-03-01 12:52:50 +1000
committerGitHub <noreply@github.com>2024-03-01 12:52:50 +1000
commit72877131a8ba29b58a7a4309304fa6f726a0a9e3 (patch)
tree1d073f4fc9a62498cafb4c877fb4642598223295
parentf476db11bc95da3bdd28db68f9a7bb99f58cac27 (diff)
parent3e7bc81be27f37d44f99967b494385dfa2d0efa0 (diff)
Merge pull request #24778 from joseluismarti/compileSdkVersion
[Android] Use compileSdk, minSdk and targetSdk
-rw-r--r--tools/android/packaging/xbmc/build.gradle.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/android/packaging/xbmc/build.gradle.in b/tools/android/packaging/xbmc/build.gradle.in
index 376572f777..9ea5bc0375 100644
--- a/tools/android/packaging/xbmc/build.gradle.in
+++ b/tools/android/packaging/xbmc/build.gradle.in
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
android {
namespace '@APP_PACKAGE@'
- compileSdkVersion @TARGET_SDK@
+ compileSdk @TARGET_SDK@
ndkPath "@NDKROOT@"
defaultConfig {
applicationId "@APP_PACKAGE@"
- minSdkVersion @TARGET_MINSDK@
- targetSdkVersion @TARGET_SDK@
+ minSdk @TARGET_MINSDK@
+ targetSdk @TARGET_SDK@
versionCode @APP_VERSION_CODE_ANDROID@
versionName "@APP_VERSION@"
}