fix merge from 16-dev to qpr1 problem

This commit is contained in:
Pun Butrach
2025-12-20 21:26:00 +07:00
parent 436b59f0d4
commit ec7802ddd1
5 changed files with 2 additions and 8 deletions

View File

@@ -376,7 +376,6 @@ dependencies {
implementation projects.viewcapturelib
implementation projects.displaylib
implementation projects.mechanics
implementation projects.mechanics.compose
// Recents lib dependency
withQuickstepCompileOnly projects.hiddenApi

View File

@@ -101,7 +101,6 @@ fun SelectAppsForDrawerFolder(
preferenceGroupItems(
count = 20,
isFirstChild = true,
dividerStartIndent = 40.dp,
) {
AppItemPlaceholder()
}
@@ -169,7 +168,6 @@ fun SelectAppsForDrawerFolder(
null
},
isFirstChild = selectedAppsInFolder.isEmpty(),
dividerStartIndent = 40.dp,
) { _, app ->
AppItem(
app = app,

View File

@@ -26,7 +26,7 @@ import kotlinx.coroutines.delay
* An interface defining general structure of a view model in widget picker.
*/
// TODO(b/419844646): Once stable, introduce a reusable library.
internal interface ViewModel {
interface ViewModel {
/**
* Implement this function to initialize the state of viewmodel by binding to the flows from the
* interactors.

View File

@@ -72,9 +72,6 @@ project(':displaylib').projectDir = new File(rootDir, 'platform_frameworks_libs_
include ':mechanics'
project(':mechanics').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/mechanics')
include ':mechanics:compose'
project(':mechanics:compose').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/mechanics/compose')
include ':hidden-api'
include ':shared'

View File

@@ -95,7 +95,7 @@ public class BaseLauncherBinder {
StringCache stringCache;
synchronized (mBgDataModel) {
itemsIdMap = mBgDataModel.itemsIdMap.copy(mContext);
itemsIdMap = mBgDataModel.itemsIdMap.copy();
mBgDataModel.extraItems.forEach(extraItems::add);
if (incrementBindId) {
mBgDataModel.lastBindId++;