mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-17 08:30:56 +02:00
26 lines
758 B
Text
26 lines
758 B
Text
/*
|
|
* 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)
|
|
}
|