diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-29 12:07:20 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 12:17:37 +0100 |
commit | cebf1b118788ee080e3888115abbeb2e42a7fd15 (patch) | |
tree | 8103fdae4c4152eaeb562e1352e86136c08cbaa4 /android | |
parent | c33c375b90ac6ec4d0d339486ac779d6d7b441e5 (diff) |
android: Use 'compileSdk' instead of deprecated 'compileSdkVersion'
See [1] and [2]. From what I can see, they are equivalent
for our use.
This addresses a "'compileSdkVersion' is deprectaed." warning shown
in Android Studio.
[1] https://developer.android.com/reference/tools/gradle-api/7.0/com/android/build/api/dsl/CommonExtension#compilesdk
[2] https://developer.android.com/reference/tools/gradle-api/7.0/com/android/build/api/dsl/CommonExtension#compilesdkversion
Change-Id: I9a7416d8b3750a5f8f8281c6e226fc7bbe665776
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160084
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle index 1ae292ba1006..e623c9305e2b 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -39,7 +39,7 @@ dependencies { android { namespace 'org.libreoffice' - compileSdkVersion 33 + compileSdk 33 // uses non-conventional source layout, so need to reconfigure accordingly // ToDo move to conventional layout, so stuff can be stripped down. sourceSets { |