diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-08-10 03:21:47 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-08-10 03:31:08 +0530 |
commit | 959a56d7ffbc20db60721d7a09f399c8bdefe07e (patch) | |
tree | 0d9b14e0bb770fd6da2e04295f2c22c087142439 /ui/compose/build.gradle.kts | |
parent | efef72b6327c8e683c8844146e23d12104f12dd1 (diff) |
refactor: un-flatten module structure
Diffstat (limited to 'ui/compose/build.gradle.kts')
-rw-r--r-- | ui/compose/build.gradle.kts | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ui/compose/build.gradle.kts b/ui/compose/build.gradle.kts new file mode 100644 index 00000000..21f1e469 --- /dev/null +++ b/ui/compose/build.gradle.kts @@ -0,0 +1,28 @@ +/* + * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. + * SPDX-License-Identifier: GPL-3.0-only + */ +plugins { + id("com.github.android-password-store.android-library") + id("com.github.android-password-store.kotlin-android") +} + +android { + buildFeatures { + compose = true + androidResources = true + } + composeOptions { + useLiveLiterals = false + kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get() + } + namespace = "app.passwordstore.ui.compose" +} + +dependencies { + api(platform(libs.compose.bom)) + api(libs.compose.foundation.core) + api(libs.compose.foundation.layout) + api(libs.compose.material3) + api(libs.compose.ui.core) +} |