13.0.0
What's Changed
- ANDROID-14628 Not include release notes in the release notification by @jeslat in #366
- ANDROID-13687 Improve Snackbar accessibility by @jeslat in #358
🔨 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