diff options
| author | 2022-09-30 13:48:28 +0000 | |
|---|---|---|
| committer | 2022-09-30 13:48:28 +0000 | |
| commit | 28da7cced2d8592d4ea02235c6fe56b43fb9483b (patch) | |
| tree | 2c6bdeced5b768e33a47c8b5b6ec198b64613231 | |
| parent | e75b28527412ac2f2f61a93c2c43a15d790d0478 (diff) | |
| parent | 36acdd675890296151b7a99e05fa7436d59a289b (diff) | |
[automerge] Lower per-app notificationchannel limit 2p: 36acdd6758
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20084465
Bug: 240422263
Change-Id: Ie5ace372525c2245f4067a921e4449abc3df91bc
Merged-In: I8c12e3fc73e4a88842af275feaf2acffcced0402
| -rw-r--r-- | services/core/java/com/android/server/notification/PreferencesHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/PreferencesHelper.java b/services/core/java/com/android/server/notification/PreferencesHelper.java index d5d5308015c7..c6cb3c0d2ab7 100644 --- a/services/core/java/com/android/server/notification/PreferencesHelper.java +++ b/services/core/java/com/android/server/notification/PreferencesHelper.java @@ -97,7 +97,7 @@ public class PreferencesHelper implements RankingConfig { private static final String NON_BLOCKABLE_CHANNEL_DELIM = ":"; @VisibleForTesting - static final int NOTIFICATION_CHANNEL_COUNT_LIMIT = 50000; + static final int NOTIFICATION_CHANNEL_COUNT_LIMIT = 5000; private static final int NOTIFICATION_PREFERENCES_PULL_LIMIT = 1000; private static final int NOTIFICATION_CHANNEL_PULL_LIMIT = 2000; |