mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 16:14:40 +00:00
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:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user