Skip to content

Commit

Permalink
PX-483 Release 2.5.0 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
tl-keenen-charles authored Jul 17, 2023
1 parent 4c6b9f3 commit bce412e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand All @@ -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"
}
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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
}

Expand Down

0 comments on commit bce412e

Please sign in to comment.