43 lines
1.2 KiB
Groovy
43 lines
1.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
description = 'react-native-biometrics'
|
|
|
|
def DEFAULT_COMPILE_SDK_VERSION = 29
|
|
def DEFAULT_BUILD_TOOLS_VERSION = "29.0.2"
|
|
def DEFAULT_MIN_SDK_VERSION = 16
|
|
def DEFAULT_TARGET_SDK_VERSION = 29
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.4.2'
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
|
|
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.hasProperty('minSdkVersion') ? rootProject.minSdkVersion : DEFAULT_MIN_SDK_VERSION
|
|
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.biometric:biometric:1.0.0'
|
|
implementation 'com.facebook.react:react-native:+'
|
|
}
|