mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 17:58:20 +00:00
* Update compileSdkVersion to 25 and buildToolsVersion to 25.0.2 Best to keep these up-to-date. Doesn't affect backwards compatibility. * Add buildToolsVersion requirement of 25.0.2.
38 lines
604 B
Groovy
Executable File
38 lines
604 B
Groovy
Executable File
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.2.3'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
warning 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.facebook.react:react-native:0.19.+"
|
|
compile "com.google.zxing:core:3.2.1"
|
|
compile "com.drewnoakes:metadata-extractor:2.9.1"
|
|
}
|