V:0.5.0
My code running fine but when I updated to latest version which is 0.5.0 then getting error
Error:(89, 26) error: constructor RecyclerBinder in class RecyclerBinder cannot be applied to given types;
required: Builder
found: ComponentContext,GridLayoutInfo
reason: actual and formal argument lists differ in length

Hey @hussainahmad, we made the RecyclerBinder constructor private and exposed a Builder instead because it was getting ugly maintaining all the different constructors when we wanted to add a new param. Check out this commit: https://github.com/facebook/litho/commit/19ce14e31a66662de472f94d2a9abe70e86b1a66
Hope that helps.
@mihaelao Sorry, i didn't notice this, when I updated from V:0.3.1 to 0.5.0 BTW thanks
Most helpful comment
Hey @hussainahmad, we made the RecyclerBinder constructor private and exposed a Builder instead because it was getting ugly maintaining all the different constructors when we wanted to add a new param. Check out this commit: https://github.com/facebook/litho/commit/19ce14e31a66662de472f94d2a9abe70e86b1a66
Hope that helps.