Skip to content

Commit

Permalink
WTA #6: Added ksp plugin to application and feature convention plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob3075 committed Sep 9, 2022
1 parent 71088f6 commit 683f230
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ buildscript {
}
}

plugins {
id("com.google.devtools.ksp") version ("1.7.10-1.0.6") apply false
}

tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}
1 change: 1 addition & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ buildscript {

dependencies {
implementation("org.jetbrains.kotlin:kotlin-serialization:1.7.10")
implementation("com.google.devtools.ksp:symbol-processing-api:1.7.10-1.0.6")
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id("kotlin-android")
id("org.jetbrains.kotlin.kapt")
id("dagger.hilt.android.plugin")
id("com.google.devtools.ksp")
}

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id("org.jetbrains.kotlin.kapt")
id("dagger.hilt.android.plugin")
id("org.jetbrains.kotlin.plugin.serialization")
id("com.google.devtools.ksp")
}

android {
Expand Down

0 comments on commit 683f230

Please sign in to comment.