Use ksp for Glide

This commit is contained in:
Marc Plano-Lesay 2023-08-10 17:33:24 +10:00
parent de0fc464a4
commit 01e312fce1
Signed by untrusted user: kernald
GPG key ID: E52B6A7B892B0982
2 changed files with 5 additions and 3 deletions

View file

@ -5,6 +5,7 @@ plugins {
id("com.google.gms.google-services")
id("com.google.firebase.crashlytics")
id("org.jetbrains.kotlin.kapt")
id("com.google.devtools.ksp")
}
android {
@ -127,7 +128,7 @@ dependencies {
// Image
implementation("com.github.skydoves:landscapist-glide:2.1.11")
kapt("com.github.bumptech.glide:compiler:4.14.2") // this have to be align with landscapist-glide
ksp("com.github.bumptech.glide:ksp:4.14.2") // this have to be align with landscapist-glide
}
val gitBuildNumber: Int
@ -138,4 +139,4 @@ val gitBuildNumber: Int
standardOutput = stdout
}
return stdout.toString().trim().toInt()
}
}