summaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2022-12-27 12:46:28 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2022-12-28 08:28:17 +0000
commite690752d5643ffaf4da8778768e5e080476b2427 (patch)
treee26536dd4b255ea1c65910b0da7bb4c6796f9f72 /android
parentandroid: Set namespace in build.gradle instead of manifest (diff)
downloadcore-e690752d5643ffaf4da8778768e5e080476b2427.tar.gz
core-e690752d5643ffaf4da8778768e5e080476b2427.zip
android: Update compileSdkVersion/targetSdkVersion to 33
API version 33 refers to Android 13. I didn't notice anything requiring changes when quickly going over the release notes for all apps running on Android 13 [1] and apps targeting Android 13 [2]. [1] https://developer.android.com/about/versions/13/behavior-changes-all [2] https://developer.android.com/about/versions/13/behavior-changes-13 Change-Id: I8b68f3bf0afc4c00ecd3412a8fdf0581f2d6bbc0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144837 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-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 581216e603fc..37239d214f70 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -32,7 +32,7 @@ dependencies {
android {
namespace 'org.libreoffice'
- compileSdkVersion 32
+ compileSdkVersion 33
// 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 32
+ targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
}
buildTypes {