Skip to content

13.0.0

Compare
Choose a tag to compare
@jeslat jeslat released this 24 Jun 13:34
· 29 commits to main since this release
38f8064

What's Changed

🔨 Breaking Changes

A new optional parameter has been added to the Snackbar builder. This parameter allows including a custom content description in the action button.

If you are using the Snackbar from Java code, you must include this new parameter (you can pass null) when calling withAction because Java doesn't support the optional parameters. Example:

Before:
.withAction(R.string.retry, (v) -> retryAction.run())

After:
.withAction(R.string.retry, null, (v) -> retryAction.run())

Full Changelog: 12.3.0...13.0.0