1
0
Fork 0

Fixes #2464: Remove Glide dependency (#4169)

master
Sawyer Blatz 2019-07-19 11:06:49 -07:00 committed by GitHub
parent a927f43f19
commit b70719bd00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 7 deletions

View File

@ -413,9 +413,6 @@ dependencies {
androidTestImplementation Deps.mockito_android
testImplementation Deps.mockk
implementation Deps.glide
annotationProcessor Deps.glideAnnotationProcessor
debugImplementation Deps.flipper
debugImplementation Deps.soLoader
releaseImplementation Deps.flipper_noop

View File

@ -48,7 +48,6 @@ object Versions {
const val junit = "4.12"
const val mockito = "2.24.5"
const val mockk = "1.9.kotlin12"
const val glide = "4.9.0"
const val flipper = "0.21.0"
const val soLoader = "0.5.1"
@ -184,9 +183,6 @@ object Deps {
const val mockito_android = "org.mockito:mockito-android:${Versions.mockito}"
const val mockk = "io.mockk:mockk:${Versions.mockk}"
const val glide = "com.github.bumptech.glide:glide:${Versions.glide}"
const val glideAnnotationProcessor = "com.github.bumptech.glide:compiler:${Versions.glide}"
const val flipper = "com.facebook.flipper:flipper:${Versions.flipper}"
const val flipper_noop = "com.facebook.flipper:flipper-noop:${Versions.flipper}"
const val soLoader = "com.facebook.soloader:soloader:${Versions.soLoader}"