Skip to content

Commit

Permalink
[fix] #91 코틀린 어노테이션 프로세싱 툴 KAPT 디펜던시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeha committed Aug 1, 2023
1 parent 75da4da commit ebd9809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ dependencies {
implementation(MaterialDesignDependencies.materialDesign)

KaptDependencies.run {
kapt(hiltCompiler)
kapt(hiltAndroidCompiler)
kapt(hiltWorkManagerCompiler)
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object MaterialDesignDependencies {
}

object KaptDependencies {
const val hiltCompiler = "com.google.dagger:hilt-compiler:${Versions.hiltVersion}"
const val hiltAndroidCompiler = "com.google.dagger:hilt-android-compiler:${Versions.hiltVersion}"
const val hiltWorkManagerCompiler = "androidx.hilt:hilt-compiler:1.0.0"
}

Expand Down

0 comments on commit ebd9809

Please sign in to comment.