airbnb / epoxy

Epoxy is an Android library for building complex screens in a RecyclerView
https://goo.gl/eIK82p
Apache License 2.0
8.47k stars 731 forks source link

Warning during build time after adding epoxyDisableDslMarker as "true" to annotationProcessorOptions #1245

Open nzakharchenko opened 2 years ago

nzakharchenko commented 2 years ago

Hey there! We have recently updated to version 4.6.3 and have added this

project.android.buildTypes.all { buildType ->
    buildType.javaCompileOptions.annotationProcessorOptions.arguments =
            [
                    epoxyDisableDslMarker     : "true",
            ]
}

as we cannot do migration right now. But after doing so, we started to see warning:

warning: The following options were not recognized by any processor: '[epoxyDisableDslMarker, kapt.kotlin.generated]'

Is there any way to fix this warning?

Thank you in advance!

elihart commented 2 years ago

you can just ignore that warning. If you're applying that config to all projects, then you might see the warning for projects without the processor, but it doesn't hurt anything.