From b948750082d3a42dbdf8cf564c99b0f6b49fb6bf Mon Sep 17 00:00:00 2001 From: mueller-ma Date: Sun, 5 Nov 2023 12:10:20 +0100 Subject: [PATCH] Prepare for Android 14 --- .idea/kotlinc.xml | 2 +- app/build.gradle | 10 +++++----- build.gradle | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index fdf8d994..e805548a 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 6c137e36..acb58e2a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,7 @@ plugins { android { namespace 'com.github.muellerma.prepaidbalance' - compileSdkVersion 33 - buildToolsVersion "33.0.0" + buildToolsVersion "34.0.0" repositories { maven { url "https://jitpack.io" } @@ -18,7 +17,8 @@ android { defaultConfig { applicationId "com.github.muellerma.prepaidbalance" minSdkVersion 26 - targetSdkVersion 33 + compileSdk 34 + targetSdkVersion 34 versionCode 32 versionName "2.3" @@ -66,13 +66,13 @@ 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.fragment:fragment-ktx:1.6.1" implementation "androidx.appcompat:appcompat:1.6.1" implementation "androidx.preference:preference-ktx:1.2.1" implementation "androidx.constraintlayout:constraintlayout:2.1.4" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" - implementation "com.google.android.material:material:1.9.0" + implementation "com.google.android.material:material:1.10.0" implementation "androidx.work:work-runtime-ktx:$workmanager_version" implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-ktx:$room_version" diff --git a/build.gradle b/build.gradle index a259c963..05cbaf0a 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.room_version = "2.5.2" + ext.kotlin_version = "1.9.20" + ext.room_version = "2.6.0" ext.workmanager_version = "2.8.1" ext.about_libraries_version="10.8.3"