Initial unified commit for Android 14, with "light" GSI target

This commit is contained in:
Andy CrossGate Yan
2024-02-17 16:48:27 +08:00
commit ea765d3ff5
117 changed files with 15033 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
From f80b0972ed320771192feddfe0b0da27041e19f5 Mon Sep 17 00:00:00 2001
From: Andy CrossGate Yan <GeForce8800Ultra@gmail.com>
Date: Mon, 20 Nov 2023 10:43:38 +0800
Subject: [PATCH] Keyguard: Default to small clock (3/3)
Change-Id: I7c11ec93df2135d19afbe30cd0c1c017c3901d4f
---
.../picker/clock/data/repository/ClockPickerRepositoryImpl.kt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/com/android/customization/picker/clock/data/repository/ClockPickerRepositoryImpl.kt b/src/com/android/customization/picker/clock/data/repository/ClockPickerRepositoryImpl.kt
index 370668ef..ea7a5582 100644
--- a/src/com/android/customization/picker/clock/data/repository/ClockPickerRepositoryImpl.kt
+++ b/src/com/android/customization/picker/clock/data/repository/ClockPickerRepositoryImpl.kt
@@ -194,7 +194,7 @@ class ClockPickerRepositoryImpl(
// The color tone to apply to the selected color
private const val KEY_METADATA_COLOR_TONE_PROGRESS = "metadataColorToneProgress"
- // The default clock size is 1, which means dynamic
- private const val DEFAULT_CLOCK_SIZE = 1
+ // The default clock size is 0, which means small
+ private const val DEFAULT_CLOCK_SIZE = 0
}
}
--
2.34.1