blob: 7a69dadbb03272409fe72bfeb9b3d090905ef7d2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* 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.core.ktx)
implementation(libs.androidx.credentials)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.thirdparty.logcat)
testImplementation(libs.bundles.testDependencies)
}
|