blob: e423137fd55d91f83c0b7eef53859ec6e14ce9e8 [file] [log] [blame]
Kevin Chyn3d0c9702018-04-05 17:28:33 -07001import androidx.build.LibraryGroups
2import androidx.build.LibraryVersions
Aurimas Liutikas75e93a02019-05-28 16:31:38 -07003import androidx.build.Publish
Kevin Chyn3d0c9702018-04-05 17:28:33 -07004
5plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +01006 id("AndroidXPlugin")
7 id("com.android.library")
Kevin Chyn3d0c9702018-04-05 17:28:33 -07008}
9
10dependencies {
Ilya Matyukhin59e8ee42019-07-15 12:38:59 -070011 api("androidx.annotation:annotation:1.1.0")
12 api("androidx.appcompat:appcompat:1.1.0-rc01")
Nick Anthonyece690f2019-07-31 17:50:14 +000013 api("androidx.core:core:1.1.0-rc02")
Ilya Matyukhin59e8ee42019-07-15 12:38:59 -070014 api("androidx.fragment:fragment:1.1.0-rc01")
Kevin Chyn3d0c9702018-04-05 17:28:33 -070015}
16
17android {
18 sourceSets {
19 main.res.srcDirs 'res'
20 }
21
22 aaptOptions {
23 noCompress 'ttf'
24 }
25}
26
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070027androidx {
Kevin Chyn3d0c9702018-04-05 17:28:33 -070028 name = "Biometric"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070029 publish = Publish.SNAPSHOT_AND_RELEASE
Kevin Chyn3d0c9702018-04-05 17:28:33 -070030 mavenVersion = LibraryVersions.BIOMETRIC
31 mavenGroup = LibraryGroups.BIOMETRIC
32 inceptionYear = "2018"
33 description = "The Biometric library is a static library that you can add to your Android application. It invokes BiometricPrompt on devices running P and greater, and on older devices will show a compat dialog. Compatible on devices running API 14 or later."
34}