From 095f67dd25ceeff5df388ef42f73de963dd9348b Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Tue, 7 Dec 2021 16:23:49 -0300 Subject: Show bank details for manual withdrawal --- wallet/build.gradle | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'wallet/build.gradle') 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" -- cgit v1.2.3