Skip to content

Commit

Permalink
Update ksp documentation versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed Apr 27, 2024
1 parent 12ea097 commit 477539b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev-guide/ksp.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ The main steps are:
```kotlin
plugins {
// STEP 1: Apply the Kotlin JVM (or Kotlin Android plugin)
id "org.jetbrains.kotlin.jvm" version "1.9.0"
id "org.jetbrains.kotlin.jvm" version "1.9.23"
// STEP 2: Apply the KSP plugin
id "com.google.devtools.ksp" version "1.9.0-1.0.12"
id "com.google.devtools.ksp" version "1.9.23-1.0.20"
}

// STEP 3: Change compiler dependencies from 'kapt' to 'ksp' configuration.
dependencies {
ksp "com.google.dagger:dagger-compiler:2.48" // Dagger compiler
ksp "com.google.dagger:hilt-compiler:2.48" // Hilt compiler
ksp "com.google.dagger:dagger-compiler:2.51.1" // Dagger compiler
ksp "com.google.dagger:hilt-compiler:2.51.1" // Hilt compiler
}
```

Expand Down

0 comments on commit 477539b

Please sign in to comment.