Skip to content

Commit

Permalink
[Mod] #18 kapt -> ksp
Browse files Browse the repository at this point in the history
  • Loading branch information
cacaocoffee committed Jun 19, 2024
1 parent e2a65aa commit 256d629
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
id "kotlin-parcelize"
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.0'
id 'com.google.dagger.hilt.android'
id 'kotlin-kapt'
id 'kotlin-android'
id 'com.google.devtools.ksp'
}
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
Expand Down Expand Up @@ -72,5 +72,5 @@ dependencies {

//hlit
implementation 'com.google.dagger:hilt-android:2.51'
kapt 'com.google.dagger:hilt-compiler:2.51.1'
ksp 'com.google.dagger:hilt-compiler:2.51.1'
}
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ plugins {
id 'com.android.library' version '8.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id 'com.google.dagger.hilt.android' version '2.51' apply false
id 'com.google.devtools.ksp' version '1.9.0-1.0.12' apply false
}

0 comments on commit 256d629

Please sign in to comment.