diff --git a/app/build.gradle b/app/build.gradle index a0cc772..c9e4396 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,11 +31,11 @@ android { } compileOptions { coreLibraryDesugaringEnabled true - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = '1.8' + jvmTarget = '17' } buildFeatures { compose true @@ -56,7 +56,7 @@ android { dependencies { coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$desugar_jdk_libs" - implementation 'androidx.core:core-ktx:1.10.0' + implementation 'androidx.core:core-ktx:1.10.1' implementation "androidx.appcompat:appcompat:$appcompat_version" implementation "androidx.compose.ui:ui:$compose_version" implementation "androidx.compose.material:material-icons-extended:$compose_icons_version" @@ -71,5 +71,5 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$json_serialization_version" implementation "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:$retrofit2_kotlinx_serialization" - implementation "com.truelayer.payments:ui:2.4.0" + implementation "com.truelayer.payments:ui:2.5.0" } \ No newline at end of file diff --git a/build.gradle b/build.gradle index 521bea4..4237f49 100644 --- a/build.gradle +++ b/build.gradle @@ -1,22 +1,22 @@ buildscript { ext { - activity_compose_version="1.7.1" + activity_compose_version="1.7.2" appcompat_version = "1.6.1" - compose_version = "1.4.2" - compose_icons_version = "1.4.2" + compose_version = "1.4.3" + compose_icons_version = "1.4.3" compose_compiler_version = "1.4.4" json_serialization_version = "1.3.3" kotlin_version = "1.8.10" lifecycle_version = "2.6.1" - material_version = "1.8.0" + material_version = "1.9.0" retrofit2_kotlinx_serialization = "1.0.0" - material3_compose_version = "1.0.1" + material3_compose_version = "1.1.1" desugar_jdk_libs = "1.2.2" } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '8.0.1' apply false - id 'com.android.library' version '8.0.1' apply false + id 'com.android.application' version '8.0.2' apply false + id 'com.android.library' version '8.0.2' apply false id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false }