android/source/build.gradle |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit be3f29bd103bf058eeef063823fd4049448ce27f
Author:     Michael Weghorn <[email protected]>
AuthorDate: Thu May 26 09:48:27 2022 +0200
Commit:     Michael Weghorn <[email protected]>
CommitDate: Thu May 26 22:06:04 2022 +0200

    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 <[email protected]>

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 {

Reply via email to