From d9d02110ddc486c438aaae5ec2cae522c49c12f0 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 28 Jul 2026 19:10:43 +0000 Subject: [PATCH] fix(resource-usage): raise the background mobile data trigger to 500 MB Bump BG_MOBILE_BYTES_PER_DAY from 100 MB to 500 MB/day so the report prompt only flags genuinely excessive background cellular traffic. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01R2efhyiQHKFoNjQo6WnGRH --- .../amethyst/service/resourceusage/ResourceUsageAlerts.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/resourceusage/ResourceUsageAlerts.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/resourceusage/ResourceUsageAlerts.kt index 7ebb8293cd..cc69160128 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/resourceusage/ResourceUsageAlerts.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/resourceusage/ResourceUsageAlerts.kt @@ -46,8 +46,8 @@ object ResourceUsageAlerts { val value: Long, ) - /** > 100 MB of background traffic on cellular in one day. */ - const val BG_MOBILE_BYTES_PER_DAY = 100L * 1024L * 1024L + /** > 500 MB of background traffic on cellular in one day. */ + const val BG_MOBILE_BYTES_PER_DAY = 500L * 1024L * 1024L /** > 24 relay-connection-hours while backgrounded on cellular in one day. */ const val BG_MOBILE_RELAY_CONN_MS_PER_DAY = 24L * 60L * 60L * 1000L