aboutsummaryrefslogtreecommitdiff
path: root/passkeys/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'passkeys/build.gradle.kts')
-rw-r--r--passkeys/build.gradle.kts30
1 files changed, 30 insertions, 0 deletions
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)
+}