Fixed
Status Update
Comments
al...@google.com <al...@google.com> #2
Is there any way to use this while it's not available, without a big if else where we do everything duplicated? Like this example.
val notification = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
Notification.Builder(...)
.setContentTitle("Title")
.setStyle(...)
// Duplicate everything here!!!
.build()
} else {
NotificationCompat.Builder(...)
.setContentTitle("Title")
.setStyle(...)
// Duplicate everything here!!!
.build()
}
ap...@google.com <ap...@google.com> #3
Hi,
Could you at least tell us if you will add the CallStyle to the NotificationCompat API?
Best regards,
na...@google.com <na...@google.com> #4
Yes. Our goal is to provide an implementation that uses CallStyle on API 31+ and uses the new fields to produce a usable call notification, based on the device's standard template, on older versions of Android.
cl...@gmail.com <cl...@gmail.com> #5
Thanks for the answer. Do you have an estimated ETA?
sa...@gmail.com <sa...@gmail.com> #6
Any update on this please?
Description
The following 4 lint issue(s) are suppressed in
src/main/java/androidx/arch/core/executor/JunitTaskExecutorRule.java
. Please remove these suppressions inarch/core/core-testing/lint-baseline.xml
and address the associated issues.