File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ plugins {
18
18
alias(libs.plugins.android.application)
19
19
alias(libs.plugins.kotlin.android)
20
20
alias(libs.plugins.kapt)
21
+ alias(libs.plugins.ksp)
21
22
alias(libs.plugins.hilt)
22
23
}
23
24
@@ -120,7 +121,7 @@ dependencies {
120
121
// Architecture Components
121
122
implementation(libs.room.runtime)
122
123
implementation(libs.room.ktx)
123
- kapt (libs.room.compiler)
124
+ ksp (libs.room.compiler)
124
125
implementation(libs.androidx.lifecycle.runtimeCompose)
125
126
implementation(libs.androidx.lifecycle.viewModelCompose)
126
127
Original file line number Diff line number Diff line change @@ -18,5 +18,6 @@ plugins {
18
18
alias(libs.plugins.android.library) apply false
19
19
alias(libs.plugins.kotlin.android) apply false
20
20
alias(libs.plugins.kapt) apply false
21
+ alias(libs.plugins.ksp) apply false
21
22
alias(libs.plugins.hilt) apply false
22
23
}
Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m -XX:+HeapDumpOnOutOfMemoryErr
19
19
android.enableJetifier =true
20
20
android.useAndroidX =true
21
21
kapt.incremental.apt =true
22
+ ksp.incremental.apt =true
22
23
org.gradle.unsafe.configuration-cache =true
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ plugins {
17
17
alias(libs.plugins.android.library)
18
18
alias(libs.plugins.kotlin.android)
19
19
alias(libs.plugins.kapt)
20
+ alias(libs.plugins.ksp)
20
21
alias(libs.plugins.hilt)
21
22
}
22
23
@@ -43,5 +44,5 @@ dependencies {
43
44
// Room
44
45
implementation(libs.room.runtime)
45
46
implementation(libs.room.ktx)
46
- kapt (libs.room.compiler)
47
+ ksp (libs.room.compiler)
47
48
}
You can’t perform that action at this time.
0 commit comments