Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33e786db authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Increase the dropbox disk quota to 20Mb for user debug builds as we add...

Merge "Increase the dropbox disk quota to 20Mb for user debug builds as we add more debug to dropbox for user debug." into main
parents 83e84b8a ea261f6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ public final class DropBoxManagerService extends SystemService {
    private static final int DEFAULT_AGE_SECONDS = 3 * 86400;
    private static final int DEFAULT_MAX_FILES = 1000;
    private static final int DEFAULT_MAX_FILES_LOWRAM = 300;
    private static final int DEFAULT_QUOTA_KB = 10 * 1024;
    private static final int DEFAULT_QUOTA_KB = Build.IS_USERDEBUG ? 20 * 1024 : 10 * 1024;
    private static final int DEFAULT_QUOTA_PERCENT = 10;
    private static final int DEFAULT_RESERVE_PERCENT = 0;
    private static final int QUOTA_RESCAN_MILLIS = 5000;