# nougat

Published articles for nougat.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Android Nougat and rate limiting of notification updates

DevFeed: [Android Nougat and rate limiting of notification updates](<https://devfeed.tech/articles/android-nougat-and-rate-limiting-of-notification-updates-29016.md>)

Original publisher: [Read original article](<https://saket.me/android-7-nougat-rate-limiting-notifications/>)

Author: Saket Narayan

Published: 2017-08-28T11:23:55Z

Content type: article

Language: en

Sources: [Saket Narayan](<https://devfeed.tech/sources/saket-narayan.md>)

Topics: [Android](<https://devfeed.tech/topics/android.md>), [rate-limiting](<https://devfeed.tech/topics/rate-limiting.md>), [notifications](<https://devfeed.tech/topics/notifications.md>), [RxJava](<https://devfeed.tech/topics/rxjava.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [notifications](<https://devfeed.tech/tags/notifications.md>), [nougat](<https://devfeed.tech/tags/nougat.md>), [rate-limiting](<https://devfeed.tech/tags/rate-limiting.md>), [rxjava](<https://devfeed.tech/tags/rxjava.md>)

### AI overview

The article explains why progress notifications for image downloads can stop reaching 100% on Android Nougat and later. It attributes the behavior to Android notification-update rate limiting, which was reduced in Nougat, and describes using RxJava to throttle updates to about five per second. The author notes that the limit applies per package and that the issue is not fully solved.

### Source excerpt

While working on a feature for downloading images in my app, I ran into a strange issue where progress notifications were never reaching 100%. Knowing that the framework is usually not wrong, I started suspecting my own skills (as usual). To make matters worse, nobody was able to reproduce the issue in a sample project I shared with other [...] The post Android Nougat and rate limiting of notification updates appeared first on Saket Narayan.

## Tips for Android Nougat's bundled notifications

DevFeed: [Tips for Android Nougat's bundled notifications](<https://devfeed.tech/articles/tips-for-android-nougat-s-bundled-notifications-29033.md>)

Original publisher: [Read original article](<https://saket.me/nougat-bundled-notifications/>)

Author: Saket Narayan

Published: 2017-05-31T14:00:50Z

Content type: tutorial

Language: en

Sources: [Saket Narayan](<https://devfeed.tech/sources/saket-narayan.md>)

Topics: [Android](<https://devfeed.tech/topics/android.md>), [notifications](<https://devfeed.tech/topics/notifications.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [behavior](<https://devfeed.tech/tags/behavior.md>), [guide](<https://devfeed.tech/tags/guide.md>), [notifications](<https://devfeed.tech/tags/notifications.md>), [nougat](<https://devfeed.tech/tags/nougat.md>), [tips](<https://devfeed.tech/tags/tips.md>)

### AI overview

This article summarizes practical findings from implementing bundled notifications in an Android app, including differences between Nougat and older Android versions, summary-notification behavior, state management, and how grouped notifications handle sounds, vibration, and replacement.

### Source excerpt

I've been working on implementing bundled notifications in my app, which is by far one of my favourite features about Android 7.0 Nougat. While the official guide is good enough for understanding how they work, I've constantly found myself running into behaviours that were not easy to find in the documentation. This post is an attempt to summarise [...] The post Tips for Android Nougat's bundled notifications appeared first on Saket Narayan.