From ef14d503da6ad5e15726ce2492a865fc269e77ea Mon Sep 17 00:00:00 2001 From: mueller-ma Date: Mon, 6 Nov 2023 18:15:51 +0100 Subject: [PATCH] Prepare for Android 14 --- app/build.gradle | 13 ++++++------- build.gradle | 4 ++-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0d84ff96..7f0a3650 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.androidx_navigation_version = "2.6.0" + ext.androidx_navigation_version = "2.7.5" ext.androidx_lifecycle_version = "2.6.2" } @@ -12,13 +12,12 @@ plugins { android { namespace 'com.github.muellerma.tabletoptools' - compileSdkVersion 33 - buildToolsVersion "33.0.0" defaultConfig { applicationId "com.github.muellerma.tabletoptools" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 + compileSdk 34 versionCode 24 versionName "1.23" @@ -56,10 +55,10 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation "androidx.core:core-ktx:1.10.1" + implementation "androidx.core:core-ktx:1.12.0" implementation "androidx.appcompat:appcompat:1.6.1" - implementation "androidx.fragment:fragment-ktx:1.6.1" - implementation "com.google.android.material:material:1.9.0" + implementation "androidx.fragment:fragment-ktx:1.6.2" + implementation "com.google.android.material:material:1.10.0" implementation "androidx.preference:preference-ktx:1.2.1" implementation "androidx.constraintlayout:constraintlayout:2.1.4" implementation "androidx.navigation:navigation-fragment-ktx:$androidx_navigation_version" diff --git a/build.gradle b/build.gradle index 612c0bb5..7e0e9e92 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "1.9.10" - ext.about_libraries_version = "10.8.3" + ext.kotlin_version = "1.9.20" + ext.about_libraries_version = "10.9.2" repositories { google() mavenCentral()