Status Update
Comments
al...@google.com <al...@google.com>
ap...@google.com <ap...@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,
ap...@google.com <ap...@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.
ap...@google.com <ap...@google.com> #5
Thanks for the answer. Do you have an estimated ETA?
na...@google.com <na...@google.com> #6
Any update on this please?
na...@google.com <na...@google.com> #7
Could you please give us an ETA?
na...@google.com <na...@google.com> #8
Hello again,
It's been a while now that Android 12 has been released, and it would be great to have an estimated time of arrival for this feature in appcompat package so we can plan our developments & releases as app developers.
Thanks in advance.
pr...@google.com <pr...@google.com> #9
Any update on this please?
pr...@google.com <pr...@google.com> #10
na...@google.com <na...@google.com> #11
Is someone there? -_-
pr...@google.com <pr...@google.com> #12
Google has left the bugtracker
cl...@gmail.com <cl...@gmail.com> #13
Any news?
Description
We've finalized SDK_INT 34, we should deprecate the check.