summaryrefslogtreecommitdiff
path: root/wallet
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2022-06-30 17:34:10 -0300
committerTorsten Grote <t@grobox.de>2022-06-30 17:34:10 -0300
commit58a3e4589823f61ec89ed4e709ed50d958733140 (patch)
treef6fd2a65545badb790f370f82412ff505179dd56 /wallet
parentcd973fd346a65d4187dcc09c7fc38563fe3902b1 (diff)
downloadtaler-android-58a3e4589823f61ec89ed4e709ed50d958733140.tar.gz
taler-android-58a3e4589823f61ec89ed4e709ed50d958733140.tar.bz2
taler-android-58a3e4589823f61ec89ed4e709ed50d958733140.zip
Fix wallet build by upgrading Kotlin/compose
Diffstat (limited to 'wallet')
-rw-r--r--wallet/build.gradle12
1 files changed, 6 insertions, 6 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index faebdde..ae3266c 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -91,7 +91,7 @@ android {
}
composeOptions {
- kotlinCompilerExtensionVersion '1.1.1'
+ kotlinCompilerExtensionVersion compose_version
}
buildFeatures {
@@ -129,12 +129,12 @@ dependencies {
// Compose
implementation 'androidx.activity:activity-compose:1.4.0'
- implementation 'androidx.compose.material:material:1.1.1'
- implementation 'androidx.compose.animation:animation:1.1.1'
- implementation 'androidx.compose.ui:ui-tooling:1.1.1'
- implementation 'androidx.compose.material:material-icons-extended:1.1.1'
+ implementation "androidx.compose.material:material:$compose_version"
+ implementation "androidx.compose.animation:animation:$compose_version"
+ implementation "androidx.compose.ui:ui-tooling:$compose_version"
+ implementation "androidx.compose.material:material-icons-extended:$compose_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
- implementation 'com.google.android.material:compose-theme-adapter:1.1.9'
+ implementation 'com.google.android.material:compose-theme-adapter:1.1.13'
// Lists and Selection
implementation "androidx.recyclerview:recyclerview:1.2.1"