2016-06-29 15:31:04 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2018-01-15 16:29:03 +00:00
|
|
|
compileSdkVersion 25
|
2018-03-21 13:27:52 +00:00
|
|
|
buildToolsVersion "26.0.3"
|
2016-06-29 15:31:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-01-15 16:29:03 +00:00
|
|
|
minSdkVersion 16
|
2017-02-19 16:49:03 +00:00
|
|
|
targetSdkVersion 25
|
2016-06-29 15:31:04 +00:00
|
|
|
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
|
|
|
}
|
2016-06-29 15:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-11-25 11:34:50 +00:00
|
|
|
compile 'com.facebook.react:react-native:+'
|
2018-01-15 16:29:03 +00:00
|
|
|
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'
|
2016-08-09 14:27:44 +00:00
|
|
|
compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.9.1'
|
2016-11-08 14:08:13 +00:00
|
|
|
}
|