7fb63fdda5
* fix(deps): update dependency com.android.tools.build:gradle to v8.7.0 * fix: remove deprecated options --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
27 lines
697 B
Text
27 lines
697 B
Text
/*
|
|
* Copyright © 2014-2024 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
|
|
}
|
|
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)
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.compose.ui.tooling)
|
|
}
|