fix: return hilt to kapt
unfortunately hilt with ksp makes the app crash on older (android 24) devices Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
parent
fddb926770
commit
1eec2499ee
|
|
@ -7,6 +7,7 @@ plugins {
|
|||
id 'com.google.devtools.ksp'
|
||||
id "io.sentry.android.gradle" version "3.4.2"
|
||||
|
||||
id 'kotlin-kapt'
|
||||
id 'kotlin-parcelize'
|
||||
}
|
||||
|
||||
|
|
@ -208,7 +209,7 @@ dependencies {
|
|||
// Hilt - Dependency Injection
|
||||
implementation "com.google.dagger:hilt-android:$hilt_version"
|
||||
implementation "androidx.hilt:hilt-navigation-compose:1.1.0-alpha01"
|
||||
ksp "com.google.dagger:hilt-compiler:$hilt_version"
|
||||
kapt "com.google.dagger:hilt-compiler:$hilt_version"
|
||||
|
||||
// Glide - Image Loading
|
||||
implementation "com.github.bumptech.glide:glide:$glide_version"
|
||||
|
|
|
|||
Loading…
Reference in New Issue