Skip to content

Instantly share code, notes, and snippets.

@ecdundar
Created February 27, 2019 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecdundar/83604d213f4df3e6b205764823e93622 to your computer and use it in GitHub Desktop.
Save ecdundar/83604d213f4df3e6b205764823e93622 to your computer and use it in GitHub Desktop.
Fingerprint SDK
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
}
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
}
dependencies {
compile 'com.facebook.react:react-native:+'
compile 'com.wei.android.lib:fingerprintidentify:1.2.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment