Created
February 27, 2019 08:39
-
-
Save ecdundar/83604d213f4df3e6b205764823e93622 to your computer and use it in GitHub Desktop.
Fingerprint SDK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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