You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The app's notification sound frequently stutters and restarts midstream, but only on Android 8.0 and 8.1. This happens in the emulator and actual hardware.
Aha! After investigating, this seems to happen when GCMMessageHandler#handleMessage builds a notification and then a summary notification.
So starting from no TBA notifications in the shade, the first one will sound right and (if nobody dismisses it) the next one will play stuttered.
The text was updated successfully, but these errors were encountered:
The fix is to call builder.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY) before building a notification that will immediately become part of a group summary. But this new method is in supportLibVersion 26.1.0 and compileSdkVersion 26, and calling it requires restructuring the code to push a NotificationCompat.Builder around rather than a built Notification.
The app's notification sound frequently stutters and restarts midstream, but only on Android 8.0 and 8.1. This happens in the emulator and actual hardware.
Aha! After investigating, this seems to happen when
GCMMessageHandler#handleMessage
builds a notification and then a summary notification.So starting from no TBA notifications in the shade, the first one will sound right and (if nobody dismisses it) the next one will play stuttered.
The text was updated successfully, but these errors were encountered: