Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Glide's exif interface version to 1.2.0 #4273

Merged
merged 1 commit into from
Jun 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ [email protected]
ANDROID_SUPPORT_VERSION=27.1.1
ANDROID_X_VERSION=1.0.0
ANDROID_X_FUTURES_VERSION=1.0.0-rc01
EXIF_INTERFACE_VERSION=1.2.0
ANDROIDX_TEST_VERSION=1.1.0
VOLLEY_VERSION=1.1.0
OK_HTTP_VERSION=3.9.1
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
androidTestImplementation "androidx.test:core:${ANDROIDX_TEST_VERSION}"
androidTestImplementation "com.google.truth:truth:${TRUTH_VERSION}"
androidTestImplementation "junit:junit:${JUNIT_VERSION}"
androidTestImplementation "androidx.exifinterface:exifinterface:${ANDROID_X_VERSION}"
androidTestImplementation "androidx.exifinterface:exifinterface:${EXIF_INTERFACE_VERSION}"

// Not totally clear why this is required, but it seems to be missing when tests are run on
// 4.1.2 and 4.2.0 emulators.
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
api project(':annotation')
api "androidx.fragment:fragment:${ANDROID_X_VERSION}"
api "androidx.vectordrawable:vectordrawable-animated:${ANDROID_X_VERSION}"
api "androidx.exifinterface:exifinterface:${ANDROID_X_VERSION}"
api "androidx.exifinterface:exifinterface:${EXIF_INTERFACE_VERSION}"
compileOnly "androidx.appcompat:appcompat:${ANDROID_X_VERSION}"

if (project.plugins.hasPlugin('net.ltgt.errorprone')) {
Expand Down