Skip to content

Commit d7059db

Browse files
committed
Jelly: Move KAPT block to the right place
Change-Id: Icbac1d9974d36cdd3663b4c2fd36f2660546efc2
1 parent 0a8e529 commit d7059db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ android {
2323
targetSdk = 35
2424
versionCode = 1
2525
versionName = "1.0"
26-
27-
kapt {
28-
arguments {
29-
arg("room.schemaLocation", "$projectDir/schemas")
30-
}
31-
}
3226
}
3327

3428
buildTypes {
@@ -63,6 +57,12 @@ android {
6357
}
6458
}
6559

60+
kapt {
61+
arguments {
62+
arg("room.schemaLocation", "$projectDir/schemas")
63+
}
64+
}
65+
6666
dependencies {
6767
// Align versions of all Kotlin components
6868
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))

0 commit comments

Comments
 (0)