Skip to content

Commit

Permalink
migrate from kapt to ksp
Browse files Browse the repository at this point in the history
  • Loading branch information
yamal-alm committed Apr 23, 2024
1 parent 32f8059 commit aafbeb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ buildscript {
plugins {
id("io.gitlab.arturbosch.detekt").version("1.18.1")
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0' apply false
id("com.google.devtools.ksp") version "1.9.23-1.0.20" apply false
}

detekt {
Expand Down
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'com.google.devtools.ksp'
}

android {
Expand Down Expand Up @@ -69,8 +69,8 @@ dependencies {

//Dagger
enabledImplementation "com.google.dagger:dagger-android-support:$dagger_version"
kapt "com.google.dagger:dagger-compiler:$dagger_version"
kapt "com.google.dagger:dagger-android-processor:$dagger_version"
ksp "com.google.dagger:dagger-compiler:$dagger_version"
ksp "com.google.dagger:dagger-android-processor:$dagger_version"


testImplementation 'junit:junit:4.13.2'
Expand Down

0 comments on commit aafbeb8

Please sign in to comment.