summaryrefslogtreecommitdiffhomepage
path: root/android/app
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-05-31 10:56:34 +0200
committerAlbin <albin@mullvad.net>2022-06-15 10:25:32 +0200
commit49fa983fe3f08214a374a0860d1cb02d5a7d7d89 (patch)
tree01d6f658a17b49d7973ce0d0060b47021b5e80d5 /android/app
parentd184669f0f932f08dd9c8f45d3d241e10daa77f4 (diff)
downloadmullvadvpn-49fa983fe3f08214a374a0860d1cb02d5a7d7d89.tar.xz
mullvadvpn-49fa983fe3f08214a374a0860d1cb02d5a7d7d89.zip
Add compose dependencies
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle.kts15
1 files changed, 15 insertions, 0 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 2e0f62423e..afd32e22e7 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -83,6 +83,15 @@ android {
}
}
+ buildFeatures {
+ compose = true
+ }
+
+ composeOptions {
+ kotlinCompilerVersion = Versions.kotlin
+ kotlinCompilerExtensionVersion = Versions.kotlinCompilerExtensionVersion
+ }
+
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
@@ -164,6 +173,12 @@ dependencies {
implementation(Dependencies.AndroidX.lifecycleRuntimeKtx)
implementation(Dependencies.AndroidX.lifecycleViewmodelKtx)
implementation(Dependencies.AndroidX.recyclerview)
+ implementation(Dependencies.Compose.constrainLayout)
+ implementation(Dependencies.Compose.foundation)
+ implementation(Dependencies.Compose.viewModelLifecycle)
+ implementation(Dependencies.Compose.material)
+ implementation(Dependencies.Compose.uiController)
+ implementation(Dependencies.Compose.ui)
implementation(Dependencies.jodaTime)
implementation(Dependencies.Koin.core)
implementation(Dependencies.Koin.coreExt)