react-native-camera-kit/android/build.gradle

27 lines
605 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
compileSdkVersion 25
2018-03-21 13:27:52 +00:00
buildToolsVersion "26.0.3"
defaultConfig {
minSdkVersion 16
2017-02-19 16:49:03 +00:00
targetSdkVersion 25
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
lintOptions {
2018-03-22 08:30:58 +00:00
warning 'InvalidPackage'
2018-03-21 13:27:52 +00:00
}
}
dependencies {
2016-11-25 11:34:50 +00:00
compile 'com.facebook.react:react-native:+'
compile 'com.android.support:recyclerview-v7:25.0.1'
2018-01-29 15:22:02 +00:00
compile 'com.google.zxing:core:3.3.0'
compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.9.1'
2016-11-08 14:08:13 +00:00
}