summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2021-12-07 16:23:49 -0300
committerTorsten Grote <t@grobox.de>2021-12-07 16:23:49 -0300
commit095f67dd25ceeff5df388ef42f73de963dd9348b (patch)
tree0aa089df8590d5a360f5ffb2137bf5c42df512a8 /wallet/build.gradle
parent5476ac27b671e51aceb51e4574b70730f7f0f2f3 (diff)
downloadtaler-android-095f67dd25ceeff5df388ef42f73de963dd9348b.tar.gz
taler-android-095f67dd25ceeff5df388ef42f73de963dd9348b.tar.bz2
taler-android-095f67dd25ceeff5df388ef42f73de963dd9348b.zip
Show bank details for manual withdrawal
Diffstat (limited to 'wallet/build.gradle')
-rw-r--r--wallet/build.gradle17
1 files changed, 15 insertions, 2 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index e5da3a3..27894e9 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -39,7 +39,7 @@ def gitCommit = { ->
}
android {
- compileSdkVersion 30
+ compileSdkVersion 31
//noinspection GradleDependency
buildToolsVersion "$build_tools_version"
@@ -91,8 +91,13 @@ android {
jvmTarget = "1.8"
}
+ composeOptions {
+ kotlinCompilerExtensionVersion '1.0.5'
+ }
+
buildFeatures {
- viewBinding = true
+ viewBinding true
+ compose true
}
packagingOptions {
@@ -119,6 +124,14 @@ dependencies {
implementation "com.google.android.material:material:$material_version"
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
+ // Compose
+ implementation 'androidx.activity:activity-compose:1.4.0'
+ implementation 'androidx.compose.material:material:1.0.5'
+ implementation 'androidx.compose.animation:animation:1.0.5'
+ implementation 'androidx.compose.ui:ui-tooling:1.0.5'
+ implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0'
+ implementation "com.google.android.material:compose-theme-adapter:1.1.1"
+
// Lists and Selection
implementation "androidx.recyclerview:recyclerview:1.2.1"
implementation "androidx.recyclerview:recyclerview-selection:1.1.0"