Merge "Reduce storage requirement for Terminal App" into main am: 7d6225d0a4

Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/3499330

Change-Id: I12009fa315403d586700a64ff741e65c3ecbadd6
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2025-03-10 19:59:57 -07:00
committed by Automerger Merge Worker

View File

@@ -44,7 +44,7 @@ public class LinuxTerminalPreferenceController extends DeveloperOptionsPreferenc
static final long MEMORY_MIN_BYTES = DataUnit.GIGABYTES.toBytes(4); // 4_000_000_000
@VisibleForTesting
static final long STORAGE_MIN_BYTES = DataUnit.GIGABYTES.toBytes(64); // 64_000_000_000
static final long STORAGE_MIN_BYTES = DataUnit.GIGABYTES.toBytes(16); // 16_000_000_000
private static final String LINUX_TERMINAL_KEY = "linux_terminal";