Skip to content

4.3.1

Compare
Choose a tag to compare
@elihart elihart released this 02 Dec 18:41
· 68 commits to master since this release
a108e06
  • Fix ANR and view pool resolution in nested group (#1101)
  • ModelGroupHolder get recycle pool from parent (#1097)
  • Add support for EpoxyModelGroup in the EpoxyVisibilityTracker (#1091)
  • Convert EpoxyVisibilityTracker code to Kotlin (#1090)

Breaking Changes

Note that due to the conversion of EpoxyVisibilityTracker to kotlin you now need to access - EpoxyVisibilityTracker.partialImpressionThresholdPercentage as a property
epoxyVisibilityTracker.setPartialImpressionThresholdPercentage(value) -> epoxyVisibilityTracker.partialImpressionThresholdPercentage = value`

Also, the ModelGroupHolder improvement required the ModelGroupHolder#createNewHolder function to change its signature to accept a ViewParent parameter.

If you override createNewHolder() anywhere you will need to change it to createNewHolder(@nonnull ViewParent parent)