Merge pull request #79 from kirmanak/glide-ksp

Replace Glide kapt with Glide KSP
This commit is contained in:
Kirill Kamakin
2022-10-31 20:07:49 +01:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ plugins {
id("dagger.hilt.android.plugin") id("dagger.hilt.android.plugin")
id("com.google.gms.google-services") id("com.google.gms.google-services")
id("com.google.firebase.crashlytics") id("com.google.firebase.crashlytics")
alias(libs.plugins.ksp)
alias(libs.plugins.appsweep) alias(libs.plugins.appsweep)
} }
@@ -101,7 +102,7 @@ dependencies {
// Excludes the support library because it's already included by Glide. // Excludes the support library because it's already included by Glide.
isTransitive = false isTransitive = false
} }
kapt(libs.bumptech.glide.compiler) ksp(libs.bumptech.glide.ksp)
implementation(libs.kirich1409.viewBinding) implementation(libs.kirich1409.viewBinding)

View File

@@ -150,7 +150,7 @@ okhttp3-loggingInterceptor = { group = "com.squareup.okhttp3", name = "logging-i
bumptech-glide-glide = { group = "com.github.bumptech.glide", name = "glide", version.ref = "glide" } bumptech-glide-glide = { group = "com.github.bumptech.glide", name = "glide", version.ref = "glide" }
bumptech-glide-okhttp3 = { group = "com.github.bumptech.glide", name = "okhttp3-integration", version.ref = "glide" } bumptech-glide-okhttp3 = { group = "com.github.bumptech.glide", name = "okhttp3-integration", version.ref = "glide" }
bumptech-glide-recyclerview = { group = "com.github.bumptech.glide", name = "recyclerview-integration", version.ref = "glide" } bumptech-glide-recyclerview = { group = "com.github.bumptech.glide", name = "recyclerview-integration", version.ref = "glide" }
bumptech-glide-compiler = { group = "com.github.bumptech.glide", name = "compiler", version.ref = "glide" } bumptech-glide-ksp = { group = "com.github.bumptech.glide", name = "ksp", version.ref = "glide" }
kirich1409-viewBinding = { group = "com.github.kirich1409", name = "viewbindingpropertydelegate-noreflection", version.ref = "viewBindingDelegate" } kirich1409-viewBinding = { group = "com.github.kirich1409", name = "viewbindingpropertydelegate-noreflection", version.ref = "viewBindingDelegate" }