:app:kaptDebugKotlin
w: warning: The following options were not recognized by any processor: '[kapt.kotlin.generated, room.incremental]'
Why am I getting this? I am using Room in a multi module project.
- Kotlin version: 1.3.50
- AGP: 3.5.0
- Room: 2.2.0-rc01
Shared libraries module:
api "androidx.room:room-runtime:$room_version"
api "androidx.room:room-ktx:$room_version"
api "androidx.room:room-rxjava2:$room_version"
App module:
kapt "androidx.room:room-compiler:$room_version"
Gradle.properties
kapt.incremental.apt=true
Build.gradle defaultConfig includes these compile options:
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.incremental":"true"]
}
}