We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With snap helper version 2.2.1
This is due to missing break; in GravitySnapRecyclerView:
Current:
case 4: snapHelper = new GravitySnapHelper(Gravity.CENTER); default: throw new IllegalArgumentException....
should be
case 4: snapHelper = new GravitySnapHelper(Gravity.CENTER); break; default: throw new IllegalArgumentException...
The text was updated successfully, but these errors were encountered:
Reverting back to version 2.2.0 from jcenter is a workaround. Seems a regression has happened in 2.2.1.
Sorry, something went wrong.
Thanks for letting me know. I will fix this in 2.2.2 and will update here once it's released @clhols
2.2.2 released with this fix
No branches or pull requests
With snap helper version 2.2.1
This is due to missing break; in GravitySnapRecyclerView:
Current:
should be
The text was updated successfully, but these errors were encountered: