Files
Lawnchair/src/com/android/launcher3/LauncherAppState.kt
T
Sunny Goyal c9f697aeb5 Converting LauncherAppState to Dagger
Bug: 361850561
Test: Presubmit
Flag: EXEMPT dagger

Change-Id: I336a233d2703c23a7e9065474bde471786886144
2025-02-20 19:13:49 -08:00

49 lines
1.7 KiB
Kotlin

/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.launcher3
import android.content.Context
import com.android.launcher3.dagger.ApplicationContext
import com.android.launcher3.icons.IconCache
import com.android.launcher3.icons.LauncherIconProvider
import com.android.launcher3.util.DaggerSingletonObject
import javax.inject.Inject
import javax.inject.Named
/** A collection of common dependencies used across Launcher */
@Deprecated("Inject the specific targets directly instead of using LauncherAppState")
data class LauncherAppState
@Inject
constructor(
@ApplicationContext val context: Context,
val iconProvider: LauncherIconProvider,
val iconCache: IconCache,
val model: LauncherModel,
val invariantDeviceProfile: InvariantDeviceProfile,
@Named("SAFE_MODE") val isSafeModeEnabled: Boolean,
) {
companion object {
@JvmField var INSTANCE = DaggerSingletonObject { it.launcherAppState }
@JvmStatic fun getInstance(context: Context) = INSTANCE[context]
/** Shorthand for [.getInvariantDeviceProfile] */
@JvmStatic fun getIDP(context: Context) = InvariantDeviceProfile.INSTANCE[context]
}
}