Epoxy v4.0.0-beta1 Release Notes

Release Date: 2020-05-22 // almost 4 years ago
    • ๐Ÿ‘Œ Support for incremental annotation processing as an Aggregating processor (#972)
    • โœ‚ Removed Litho support
    • 0๏ธโƒฃ A new annotation processor argument logEpoxyTimings can be set to get a detailed breakdown of how long the processors took and where they spent their time (off by default)
    • Another new argument enableParallelEpoxyProcessing can be set to true to have the annotation processor process annotations and generate files in parallel (via coroutines).

    ๐Ÿ— You can enable these processor options in your build.gradle file like so:

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

    ๐Ÿ‘ Parallel processing can greatly speed up processing time (moreso than the incremental support), but given the nature of parallel processing it is still incubating. Please report any issues or crashes that you notice. (We are currently using parallel mode in our large project at Airbnb with no problems.)

    ๐Ÿ’ฅ Breaking

    In order to enable incremental annotation processing a change had to be made in how the processor of @AutoModel annotations work. If you use @AutoModel in an EpoxyController the annotated Model types ๐Ÿ“ฆ must be either declared in a different module from the EpoxyController, or in the same module in the same java package.

    Also make sure you have kapt error types enabled.

    However, generally @AutoModel is considered legacy and is not recommended. It is a relic of Java Epoxy usage ๐Ÿ— and instead the current best practice is to use Kotlin with the Kotlin model extension functions to build models.