react-native-fast-image/android/build.gradle

37 lines
767 B
Groovy
Raw Normal View History

2017-04-13 04:13:44 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
apply plugin: 'com.android.library'
android {
2017-07-05 08:10:21 +00:00
compileSdkVersion 23
buildToolsVersion "23.0.1"
2017-04-13 04:13:44 +00:00
2017-07-05 08:10:21 +00:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
lintOptions {
abortOnError false
}
2017-04-13 04:13:44 +00:00
}
}
repositories {
2017-07-05 08:10:21 +00:00
mavenCentral()
2017-04-13 04:13:44 +00:00
}
dependencies {
2017-07-05 08:10:21 +00:00
compile 'com.facebook.react:react-native:+'
2018-03-18 06:22:12 +00:00
compile group: 'com.github.bumptech.glide', name: 'glide', version: '3.8.0'
compile group: 'com.github.bumptech.glide', name: 'okhttp3-integration', version: '1.5.0'
compile 'com.android.support:support-v4:19.1.0'
2017-04-13 04:13:44 +00:00
}