Gradle warning:
w: [kapt] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: com.skydoves.processor.PreferenceRoomProcessor (NON_INCREMENTAL), com.google.auto.service.processor.AutoServiceProcessor (NON_INCREMENTAL).
Expected Behavior:
Annotation processor has to be incremental.
Please complete the following information:
Describe the Bug:
Annotation processor is not incremental
Gradle(app): dependencies { ..... def preference_room = "1.1.8" implementation "com.github.skydoves:preferenceroom:$preference_room" kapt "com.github.skydoves:preferenceroom-processor:$preference_room" ..... }
Gradle warning: w: [kapt] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: com.skydoves.processor.PreferenceRoomProcessor (NON_INCREMENTAL), com.google.auto.service.processor.AutoServiceProcessor (NON_INCREMENTAL).
Expected Behavior: Annotation processor has to be incremental.