| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 1 | /* |
| 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 Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame^] | 17 | /** |
| 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 | */ |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 24 | import androidx.build.Publish |
| 25 | |
| 26 | plugins { |
| 27 | id("AndroidXPlugin") |
| 28 | id("com.android.library") |
| 29 | id("kotlin-android") |
| 30 | } |
| 31 | |
| 32 | dependencies { |
| 33 | api("androidx.annotation:annotation:1.1.0") |
| 34 | |
| 35 | implementation("com.google.crypto.tink:tink-android:1.3.0") |
| 36 | |
| Aurimas Liutikas | 0044296 | 2021-06-01 17:18:09 -0700 | [diff] [blame] | 37 | androidTestImplementation(libs.testExtJunit) |
| 38 | androidTestImplementation(libs.testCore) |
| 39 | androidTestImplementation(libs.testRunner) |
| 40 | androidTestImplementation(libs.testRules) |
| 41 | androidTestImplementation(libs.mockitoCore) |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 42 | |
| 43 | } |
| 44 | |
| 45 | android { |
| 46 | defaultConfig { |
| 47 | minSdkVersion 23 |
| 48 | } |
| Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 49 | namespace "androidx.security.biometric" |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | androidx { |
| Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 53 | name = "Security Biometric" |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 54 | publish = Publish.SNAPSHOT_AND_RELEASE |
| 55 | mavenVersion = LibraryVersions.SECURITY_BIOMETRIC |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 56 | inceptionYear = "2020" |
| 57 | description = "AndroidX Security Biometric" |
| Jinseong Jeon | 999075e | 2023-08-22 00:40:11 -0700 | [diff] [blame] | 58 | metalavaK2UastEnabled = true |
| Nick Anthony | 9320e51 | 2020-03-27 11:43:18 -0400 | [diff] [blame] | 59 | } |