1
0
Fork 0

Closes #622: Adds Glide (#623)

master
Sawyer Blatz 2019-02-21 09:38:00 -08:00 committed by GitHub
parent aa74e35955
commit 721d181d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -184,6 +184,9 @@ dependencies {
testImplementation Deps.mockito_core
androidTestImplementation Deps.mockito_android
testImplementation Deps.mockk
implementation Deps.glide
annotationProcessor Deps.glideAnnotationProcessor
}

View File

@ -34,6 +34,7 @@ private object Versions {
const val junit_jupiter = "5.3.2"
const val mockito = "2.23.0"
const val mockk = "1.9.kotlin12"
const val glide = "4.9.0"
}
@Suppress("unused")
@ -128,5 +129,8 @@ object Deps {
const val mockito_core = "org.mockito:mockito-core:${Versions.mockito}"
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}"
}