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

New commits:
commit 97166cb9e0b4687f7e4998d36457f74b76edb6d7
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Wed Nov 29 13:33:33 2023 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Thu Nov 30 12:17:52 2023 +0100

    android: Update compileSdk/targetSdkVersion to 34
    
    API version 33 refers to Android 14.
    
    I didn't notice anything requiring changes
    when going over the release notes for all apps running on
    Android 14 [1] and apps targeting Android 14 [2].
    
    (Taking a look whether making use of the new possibility to
    request/grant partial access to photos and videos [3]
    for the "Insert" -> "Select Photo" feature
    and testing the app with the newly available 200% text
    scaling [4] might make sense at some point, but is unrelated
    to bumping the versions as done in this commit.)
    
    [1] https://developer.android.com/about/versions/14/behavior-changes-all
    [2] https://developer.android.com/about/versions/14/behavior-changes-14
    [3] 
https://developer.android.com/about/versions/14/behavior-changes-all#partial-photo-video-access
    [4] 
https://developer.android.com/about/versions/14/behavior-changes-all#non-linear-font-scaling
    
    Change-Id: I2778d8c181daa92530c769a168a9e186b6ea079c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160086
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/android/source/build.gradle b/android/source/build.gradle
index 9157e896ad59..ea93633489c7 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -39,7 +39,7 @@ dependencies {
 
 android {
     namespace 'org.libreoffice'
-    compileSdk 33
+    compileSdk 34
     // uses non-conventional source layout, so need to reconfigure accordingly
     // ToDo move to conventional layout, so stuff can be stripped down.
     sourceSets {
@@ -55,7 +55,7 @@ android {
     }
     defaultConfig {
         // minSdkVersion is set in liboSettings.gradle
-        targetSdkVersion 33
+        targetSdkVersion 34
         // multidex needed when > 65,536 methods referenced with minSdKVersion 
< 21
         // s. https://developer.android.com/studio/build/multidex
         multiDexEnabled true
commit 8fea1b20383574dd1be86c3dbad20361604c9828
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Wed Nov 29 12:15:11 2023 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Thu Nov 30 12:17:44 2023 +0100

    android: Update Android Gradle Plugin to 8.1.4
    
    This is a prerequisite for updating the compile and target
    SDK versions to API level 34, which requires and AGP minimum
    version of 8.1.1.
    
    Change-Id: I27d12ec3c9bc3dac8a5df18459a57f1a1e990197
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160085
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/android/source/build.gradle b/android/source/build.gradle
index e623c9305e2b..9157e896ad59 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -21,7 +21,7 @@ buildscript {
         google()
     }
     dependencies {
-        classpath 'com.android.tools.build:gradle:8.1.0'
+        classpath 'com.android.tools.build:gradle:8.1.4'
     }
 }
 

Reply via email to