Obsolete
Status Update
Comments
vi...@google.com <vi...@google.com>
vi...@google.com <vi...@google.com> #2
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
ra...@gmail.com <ra...@gmail.com> #3
Filter plants are essential facilities designed to purify water for consumption and industrial use. They remove impurities like sediments, chemicals, and microorganisms through processes like filtration, sedimentation, and disinfection. These plants ensure safe, clean water, protecting public health and supporting sustainable water resource management.if you want more click here https://faysalwaterplant.com
vi...@google.com <vi...@google.com> #4
Thank you for your feedback. We assure you that we are doing our best to address all issues reported. For now, we will be closing the issue as won't fix obsolete. If this issue currently still exists, we request that you log a new issue along with the bug report here
Description
Description:
When developing with the Android Graphics API, certain
BlendMode
constants that are unavailable on Android 28 and below are not properly annotated with@RequiresApi
. This lack of annotation causes developers to be unaware of the differences between Android 29+ and 28-, leading to potential runtime visual differences or unexpected behavior when these constants are used on devices running older versions of Android.Steps to Reproduce:
BlendMode
constants that are only available on Android 29+ (e.g.,BlendMode.DIFFERENCE
).Expected Behavior:
The IDE should provide a compile-time warning or error, indicating that the
BlendMode
constant requires API level 29, thus making developers aware of the API level requirement.Actual Behavior:
No warning or error is provided, leading to potential runtime crashes or incorrect rendering behavior on devices running Android 28 or below.
Suggested Fix:
Properly annotate
BlendMode
constants that are unavailable on Android 28 and below with@RequiresApi(29)
, ensuring that developers are informed about the API level requirements at compile time or add support for older APIs.