/* * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception */ @file:Suppress("UnstableApiUsage") plugins { id("com.github.android-password-store.android-library") id("com.github.android-password-store.kotlin-android") } android { buildFeatures { androidResources = true } namespace = "app.passwordstore.passkeys" } dependencies { implementation(libs.androidx.annotation) implementation(libs.androidx.biometricKtx) implementation(libs.androidx.core.ktx) implementation(libs.androidx.credentials) implementation(libs.kotlinx.coroutines.core) implementation(libs.thirdparty.logcat) testImplementation(libs.bundles.testDependencies) }