Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Maybe also something aline the lines of:
inline fun <reified T> Bundle.parcelable(key: String): T? = when {
SDK_INT >= 33 -> getParcelable(key, T::class.java)
else -> @Suppress("DEPRECATION") getParcelable(key) as? T
}
Description
It would be nice if we had a BlendModeColorFilterCompat that we could pass to setColorFilter(ColorFilter colorFilter) that did the right thing on each API level.