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

41 lines
825 B
Groovy
Raw Normal View History

2017-04-13 04:13:44 +00:00
buildscript {
repositories {
jcenter()
2017-11-11 10:42:49 +00:00
2017-04-13 04:13:44 +00:00
}
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-11-11 10:42:49 +00:00
maven {
url "https://maven.google.com"
}
2017-04-13 04:13:44 +00:00
}
dependencies {
2017-07-05 08:10:21 +00:00
compile 'com.facebook.react:react-native:+'
2017-11-11 10:42:49 +00:00
compile group: 'com.github.bumptech.glide', name: 'glide', version: '4.3.1'
compile group: 'com.github.bumptech.glide', name: 'okhttp3-integration', version: '4.3.1'
compile 'com.android.support:support-v4:23.0.1'
2017-04-13 04:13:44 +00:00
}