summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2022-05-26 09:48:27 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2022-05-26 22:06:04 +0200
commitbe3f29bd103bf058eeef063823fd4049448ce27f (patch)
treec72e34510e0108cb7b568e23031571ea5f00ff4c
parent97b1a21f9b7b7ed8a24da4a83a043e82de46683c (diff)
android: Update compileSdkVersion/targetSdkVersion to 32
API version 32 refers to the Android 12L feature drop (Android 12.1). According to [1], "12L is a special feature drop that makes Android 12 even better on tablets and foldable devices." When getting over the list of behavior changes for apps targeting Android 12, I didn't realize anyting relevant specific to API level 32 not yet in API level 31 as well, so there seems to be no need for any special adjustments for this update on top of commit 2ab389b251744fa7f3f6b060c09746e59d87f3b1 Date: Tue Apr 19 10:33:27 2022 +0200 android: Update compileSdkVersion/targetSdkVersion to 31 [1] https://developer.android.com/about/versions/12/12L Change-Id: Ic99c4ee5b81b6584648fa4717e23cc7f3c78bdab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134988 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
-rw-r--r--android/source/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle
index adb9b067d1b4..0e0cd6381053 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -31,7 +31,7 @@ dependencies {
}
android {
- compileSdkVersion 31
+ compileSdkVersion 32
// uses non-conventional source layout, so need to reconfigure accordingly
// ToDo move to conventional layout, so stuff can be stripped down.
sourceSets {
@@ -48,7 +48,7 @@ android {
}
defaultConfig {
minSdkVersion 16
- targetSdkVersion 31
+ targetSdkVersion 32
vectorDrawables.useSupportLibrary = true
}
buildTypes {