Fixed
Status Update
Comments
al...@google.com <al...@google.com>
wi...@google.com <wi...@google.com>
ch...@google.com <ch...@google.com>
ap...@google.com <ap...@google.com> #3
Thanks for the report!
ch...@google.com <ch...@google.com>
pr...@google.com <pr...@google.com> #4
The release notes documentation has been edited to clarify this change in behavior for line height.
To support non-standard text sizes, we encourage users to follow the Material design system and use a different style = LocalTextStyle.current.copy(lineHeight = TextUnit.Unspecified)
, or create a custom Typography
entirely.
ch...@beyls.net <ch...@beyls.net> #5
deleted
Description
Component used:
androidx.core.splashscreen.SplashScreen
Version used: 1.0.0 Devices/Android versions reproduced on: Android 5, Android 6SplashScreen.install
method callsandroid.content.Context.getDrawable
on API 21. It, in turn, callsandroid.graphics.drawable.VectorDrawable.inflate
instead ofVectorDrawableCompat.inflate
.VectorDrawable
does not support some features like gradients, what may lead to a crash (see:VectorDrawable
.Suggestion: At least enable the users of the library to use
VectorDrawableCompat
instead ofVectorDrawable
.