Slide 13
Slide 13 text
SansanでK2対応を⾏うまでに⼤変だったこと②
● ⼤変じゃなかったこと②
○ RoomCompilerのKSP対応(kapt版はKotlin2.0.0まで)
// before
android {
defaultConfing {
javaCompileOptions {
annotationProcessorOptions {
arguments += [
"room.schemaLocation": "$projectDir/schemas".toString(),
"room.incremental" : "true"
]
}
}
}
}
// after
ksp {
arg("room.schemaLocation", "$projectDir/schemas".toString())
arg("room.incremental", "true")
}