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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01R2efhyiQHKFoNjQo6WnGRH
This commit is contained in:
Claude
2026-07-28 19:10:43 +00:00
parent 8a41129dfc
commit d9d02110dd
@@ -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