IMPORTANT IF YOU USE THE FASTADAPTER OR MATERIALDRAWER
- You have to update your FastAdapter dependency to v3.0.0 with this release
- See the MIGRATION information of the FastAdapter https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md
IMPORTANT IF YOU USE THE Android-Iconics
- You have to update your Android-Iconics dependency to v2.9.0 with this release
- See the MIGRATION information of the Android-Iconics https://github.com/mikepenz/Android-Iconics/blob/develop/MIGRATION.md#290
IMPORTANT IF YOU USE THE FASTADAPTER OR MATERIALDRAWER
- You have to update your FastAdapter dependency to v2.5.0 with this release
- See the MIGRATION information of the FastAdapter https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md
IMPORTANT IF YOU USE THE FASTADAPTER OR MATERIALDRAWER
- You have to update your FastAdapter dependency to v2.1.0 with this release
- See the MIGRATION information of the FastAdapter https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md
IMPORTANT IF YOU USE THE FASTADAPTER
- You have to update your FastAdapter dependency to v2.0.0 with this release
- See the MIGRATION information of the FastAdapter https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md
IMPORTANT IF YOU USE THE FASTADAPTER
- This release brings a breaking interface change. Your items now have to implement
bindView(ViewHolder holder, List payloads)
instead ofbindView(VH holder)
. - The additional payload can be used to implement a more performant view updating when only parts of the item have changed. Please also refer to the
DiffUtils
which may provide the payload.
- Dropping support for API < 14. New MinSdkVersion is 14
- Change
void onLibTaskFinished()
tovoid onLibTaskFinished(FastItemAdapter fastItemAdapter)
- renamed
withAnimations()
towithSlideInAnimation()
and change the default tofalse
- now use the
DefaultItemAnimator
to animate the displaying of the elements - you can now define a different
ItemAnimator
viaLibsConfiguration.getInstance().setItemAnimator()
- change
.fragment()
to.supportFragment()
andLibsFragment
toLibsSupportFragment
INFO
- moved logic of the fragment to the new
LibsFragmentCompat
class - create new
LibsSupportFragment
which extends theandroid.support.v4.app.Fragment
- change the
LibsFragment
which now extends theandroid.app.Fragment
- add new method
.supportFragment()
which returnsandroid.support.v4.app.Fragment
- change
.fragment()
which now returnsandroid.app.Fragment