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

27 lines
610 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
minSdkVersion 16
2017-02-19 16:49:03 +00:00
targetSdkVersion 25
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
lintOptions {
warning 'InvalidPackage'
}
}
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-25 16:39:08 +00:00
compile 'me.dm7.barcodescanner:zxing:1.9.8'
compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.9.1'
2016-11-08 14:08:13 +00:00
}