From eda8030ad01c4bf097651ce604e2ed5da92bdf13 Mon Sep 17 00:00:00 2001 From: Aditya Wasan Date: Sun, 31 Dec 2023 02:51:49 -0500 Subject: init: add passkeys module Signed-off-by: Aditya Wasan --- passkeys/build.gradle.kts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 passkeys/build.gradle.kts (limited to 'passkeys/build.gradle.kts') diff --git a/passkeys/build.gradle.kts b/passkeys/build.gradle.kts new file mode 100644 index 00000000..c2df2b85 --- /dev/null +++ b/passkeys/build.gradle.kts @@ -0,0 +1,30 @@ +/* + * 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") + id("com.github.android-password-store.psl-plugin") +} + +android { + defaultConfig { + minSdk = 23 + consumerProguardFiles("consumer-rules.pro") + } + sourceSets { getByName("test") { resources.srcDir("src/main/assets") } } + namespace = "app.passwordstore.passkeys" +} + +dependencies { + implementation(libs.androidx.annotation) + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.credentials) + implementation(libs.androidx.credentials.play.services) + implementation(libs.kotlinx.coroutines.core) + implementation(libs.thirdparty.logcat) + testImplementation(libs.bundles.testDependencies) +} -- cgit v1.2.3