Skip to content
Snippets Groups Projects
Commit 60004ea8 authored by Taras's avatar Taras
Browse files

Add glide annotation processor

parent c5a8e735
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ apply plugin: 'org.jetbrains.kotlin.android' ...@@ -3,6 +3,7 @@ apply plugin: 'org.jetbrains.kotlin.android'
apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics' apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'androidx.navigation.safeargs.kotlin' apply plugin: 'androidx.navigation.safeargs.kotlin'
apply plugin: 'kotlin-kapt'
android { android {
...@@ -93,7 +94,7 @@ dependencies { ...@@ -93,7 +94,7 @@ dependencies {
//Glide //Glide
def glide_version = "4.13.1" def glide_version = "4.13.1"
implementation "com.github.bumptech.glide:glide:$glide_version" implementation "com.github.bumptech.glide:glide:$glide_version"
annotationProcessor "com.github.bumptech.glide:compiler:$glide_version" kapt "com.github.bumptech.glide:compiler:$glide_version"
//test //test
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment