summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
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"