0
0
mirror of https://github.com/mueller-ma/PrepaidBalance.git synced 2024-09-19 16:02:14 +02:00

Prepare for Android 14 (#251)

This commit is contained in:
mueller-ma 2023-11-05 12:18:40 +01:00 committed by GitHub
parent 3e49d75740
commit 6135ec5758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="KotlinJpsPluginSettings">
<option name="version" value="1.9.0" />
<option name="version" value="1.9.20" />
</component>
</project>

View File

@ -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"

View File

@ -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"