diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-18 22:52:45 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-18 23:04:59 +0530 |
commit | 018939f815d939cc5ee3e97bea373d26ce94626c (patch) | |
tree | ffc16effbdaf47d535958c0544cdda505aee96ea /app/build.gradle.kts | |
parent | 82923983490fa87303303f37f39585b4785d9275 (diff) |
Add key manager UI
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index cc8e7037..a8032620 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,6 +27,14 @@ android { testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } + buildFeatures { + compose = true + composeOptions { + useLiveLiterals = false + kotlinCompilerExtensionVersion = libs.compose.compiler.get().versionConstraint.requiredVersion + } + } + namespace = "app.passwordstore" lint { @@ -52,6 +60,7 @@ dependencies { implementation(projects.passgen.random) implementation(projects.uiCompose) implementation(libs.androidx.activity.ktx) + implementation(libs.androidx.activity.compose) implementation(libs.androidx.appcompat) implementation(libs.androidx.autofill) implementation(libs.androidx.biometricKtx) |