aboutsummaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorSam Judd <judds@google.com>2014-11-01 10:38:35 -0700
committerSam Judd <judds@google.com>2014-11-02 14:14:09 -0800
commitdc155ae8b22d0c59ce19d57f1a7b6eb35a660d47 (patch)
tree277c8c2e6e5b2485a601607f75cf217295f3d5b7 /third_party
parentdd737542dc2f6d58cfb1367929c8d3ebc1eeebf4 (diff)
downloadglide-dc155ae8b22d0c59ce19d57f1a7b6eb35a660d47.tar.gz
Set fixed dependency versions using properties.
Diffstat (limited to 'third_party')
m---------third_party/disklrucache0
-rw-r--r--third_party/gif_decoder/build.gradle20
-rw-r--r--third_party/gif_encoder/build.gradle8
3 files changed, 14 insertions, 14 deletions
diff --git a/third_party/disklrucache b/third_party/disklrucache
-Subproject 0a63fecc9408390d7343046fe289514308334ab
+Subproject fb30e31469966bf2b9960a736735bb6380cbca3
diff --git a/third_party/gif_decoder/build.gradle b/third_party/gif_decoder/build.gradle
index 8834279f..ead0eabd 100644
--- a/third_party/gif_decoder/build.gradle
+++ b/third_party/gif_decoder/build.gradle
@@ -2,21 +2,21 @@ apply plugin: 'com.android.library'
apply plugin: 'robolectric'
dependencies {
- androidTestCompile 'com.android.support:support-v4:19.1.0'
- androidTestCompile 'org.hamcrest:hamcrest-core:1.3'
- androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
- androidTestCompile 'junit:junit:4.11'
- androidTestCompile 'org.mockito:mockito-all:1.9.5'
- androidTestCompile 'org.robolectric:robolectric:2.4-SNAPSHOT'
+ androidTestCompile "com.android.support:support-v4:${SUPPORT_V4_VERSION}"
+ androidTestCompile "org.hamcrest:hamcrest-core:${HAMCREST_VERSION}"
+ androidTestCompile "org.hamcrest:hamcrest-library:${HAMCREST_VERSION}"
+ androidTestCompile "junit:junit:${JUNIT_VERSION}"
+ androidTestCompile "org.mockito:mockito-all:${MOCKITO_VERSION}"
+ androidTestCompile "org.robolectric:robolectric:${ROBOLECTRIC_VERSION}"
}
android {
- compileSdkVersion 19
- buildToolsVersion '19.1.0'
+ compileSdkVersion COMPILE_SDK_VERSION as int
+ buildToolsVersion BUILD_TOOLS_VERSION
defaultConfig {
applicationId 'com.bumptech.glide.gifdecoder'
- minSdkVersion 10
- targetSdkVersion 19
+ minSdkVersion MIN_SDK_VERSION as int
+ targetSdkVersion TARGET_SDK_VERSION as int
}
}
diff --git a/third_party/gif_encoder/build.gradle b/third_party/gif_encoder/build.gradle
index fd7db9dc..6d214328 100644
--- a/third_party/gif_encoder/build.gradle
+++ b/third_party/gif_encoder/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'
android {
- compileSdkVersion 19
- buildToolsVersion '19.1.0'
+ compileSdkVersion COMPILE_SDK_VERSION as int
+ buildToolsVersion BUILD_TOOLS_VERSION
defaultConfig {
applicationId 'com.bumptech.glide.gifencoder'
- minSdkVersion 10
- targetSdkVersion 19
+ minSdkVersion MIN_SDK_VERSION as int
+ targetSdkVersion TARGET_SDK_VERSION as int
}
}