blob: 1b567e88755f7fa47771973e00a952a92d0d296d [file] [log] [blame]
Nick Anthony9320e512020-03-27 11:43:18 -04001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Omar Ismail86e66062024-05-03 16:10:50 +010024import androidx.build.LibraryType
Nick Anthony9320e512020-03-27 11:43:18 -040025
26plugins {
27 id("AndroidXPlugin")
28 id("com.android.library")
29 id("kotlin-android")
30}
31
32dependencies {
Aurimas Liutikas96f0b302024-07-25 15:49:23 -070033 api("androidx.annotation:annotation:1.8.1")
Nick Anthony9320e512020-03-27 11:43:18 -040034
35 implementation("com.google.crypto.tink:tink-android:1.3.0")
36
Aurimas Liutikas00442962021-06-01 17:18:09 -070037 androidTestImplementation(libs.testExtJunit)
38 androidTestImplementation(libs.testCore)
39 androidTestImplementation(libs.testRunner)
40 androidTestImplementation(libs.testRules)
41 androidTestImplementation(libs.mockitoCore)
Nick Anthony9320e512020-03-27 11:43:18 -040042
43}
44
45android {
46 defaultConfig {
Aurimas Liutikas77952822024-12-04 18:00:17 -080047 minSdk = 23
Nick Anthony9320e512020-03-27 11:43:18 -040048 }
Aurimas Liutikas77952822024-12-04 18:00:17 -080049 namespace = "androidx.security.biometric"
Nick Anthony9320e512020-03-27 11:43:18 -040050}
51
52androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040053 name = "Security Biometric"
Omar Ismail86e66062024-05-03 16:10:50 +010054 type = LibraryType.PUBLISHED_LIBRARY
Nick Anthony9320e512020-03-27 11:43:18 -040055 mavenVersion = LibraryVersions.SECURITY_BIOMETRIC
Nick Anthony9320e512020-03-27 11:43:18 -040056 inceptionYear = "2020"
57 description = "AndroidX Security Biometric"
Aurimas Liutikas5c5419a2024-05-29 15:26:58 -070058 legacyDisableKotlinStrictApiMode = true
Nick Anthony9320e512020-03-27 11:43:18 -040059}