aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Marti <joseluis.marti@gmail.com>2024-02-28 14:41:16 +0100
committerJose Luis Marti <joseluis.marti@gmail.com>2024-02-28 14:41:16 +0100
commit3e7bc81be27f37d44f99967b494385dfa2d0efa0 (patch)
treedcd84b8188cc316013fac30e97d1cc76e0c6c2d3
parente625f24a0b207741d1d45d6c78c45afe7901a84b (diff)
[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@"
}