8bae8dfe25
* fix(deps): update kotlin and compose to v2 * fix(build): switch to Kotlin Compose Compiler --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
26 lines
659 B
Text
26 lines
659 B
Text
/*
|
|
* 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")
|
|
alias(libs.plugins.kotlin.composeCompiler)
|
|
}
|
|
|
|
android {
|
|
buildFeatures {
|
|
compose = true
|
|
androidResources = true
|
|
}
|
|
composeOptions { useLiveLiterals = false }
|
|
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)
|
|
}
|