Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
build(desktop): use kapt instead of annotationProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaBrighi committed May 10, 2023
1 parent 22db92e commit d7f58fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion desktopData/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION as KOTLIN_VERSI
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.kapt")
alias(libs.plugins.protobuf.plugin)
}

Expand Down Expand Up @@ -69,7 +70,7 @@ dependencies {
implementation(libs.bundles.protobuf)
implementation(libs.bundles.grpc)
implementation(libs.bundles.room)
annotationProcessor(libs.androidx.room.compiler)
kapt(libs.androidx.room.compiler)
implementation(project(":desktopDomain"))
testImplementation(gradleTestKit())
testImplementation(libs.bundles.kotlin.testing)
Expand Down

0 comments on commit d7f58fb

Please sign in to comment.