@@ -4,10 +4,14 @@ plugins {
44
55 id ' kotlin-parcelize'
66
7- id ' org.jetbrains.kotlin.plugin.serialization' version ' 1.8.10'
7+ id ' org.jetbrains.kotlin.plugin.serialization' version ' 2.2.0'
8+ id ' org.jetbrains.kotlin.plugin.compose'
89 id ' dagger.hilt.android.plugin'
910
10- // plugin for data binding, hilt
11+ // plugin for ksp (Hilt, Glide)
12+ id ' com.google.devtools.ksp'
13+
14+ // plugin for data binding
1115 id ' kotlin-kapt'
1216
1317 // plugin for hiding keys used in manifest
@@ -66,10 +70,6 @@ android {
6670 buildConfig = true
6771 compose true
6872 }
69- composeOptions {
70- kotlinCompilerExtensionVersion ' 1.4.3'
71- }
72-
7373 buildTypes {
7474 release {
7575 minifyEnabled false
@@ -128,10 +128,10 @@ dependencies {
128128 implementation(" com.squareup.okhttp3:logging-interceptor" )
129129 // hilt
130130 implementation " com.google.dagger:hilt-android:$hilt_version "
131- kapt " com.google.dagger:hilt-android -compiler:$hilt_version "
131+ ksp " com.google.dagger:hilt-compiler:$hilt_version "
132132 // Glide
133- implementation " com.github.bumptech.glide:glide:4.12 .0"
134- kapt " com.github.bumptech.glide:compiler :4.12 .0"
133+ implementation " com.github.bumptech.glide:glide:4.16 .0"
134+ ksp " com.github.bumptech.glide:ksp :4.16 .0"
135135 // fragment change
136136 implementation(" androidx.fragment:fragment-ktx:1.5.5" )
137137 // coil
0 commit comments