Loading packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2021 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.systemui.communal.dagger; import dagger.Module; /** * Dagger Module providing Communal-related functionality. */ @Module public class CommunalModule { } packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java +7 −1 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import com.android.systemui.SystemUI; import com.android.systemui.accessibility.SystemActions; import com.android.systemui.accessibility.WindowMagnification; import com.android.systemui.biometrics.AuthController; import com.android.systemui.communal.dagger.CommunalModule; import com.android.systemui.globalactions.GlobalActionsComponent; import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.keyguard.dagger.KeyguardModule; Loading Loading @@ -51,7 +52,12 @@ import dagger.multibindings.IntoMap; /** * SystemUI objects that are injectable should go here. */ @Module(includes = {RecentsModule.class, StatusBarModule.class, KeyguardModule.class}) @Module(includes = { RecentsModule.class, StatusBarModule.class, KeyguardModule.class, CommunalModule.class, }) public abstract class SystemUIBinder { /** Inject into AuthController. */ @Binds Loading Loading
packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2021 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.systemui.communal.dagger; import dagger.Module; /** * Dagger Module providing Communal-related functionality. */ @Module public class CommunalModule { }
packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java +7 −1 Original line number Diff line number Diff line Loading @@ -23,6 +23,7 @@ import com.android.systemui.SystemUI; import com.android.systemui.accessibility.SystemActions; import com.android.systemui.accessibility.WindowMagnification; import com.android.systemui.biometrics.AuthController; import com.android.systemui.communal.dagger.CommunalModule; import com.android.systemui.globalactions.GlobalActionsComponent; import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.keyguard.dagger.KeyguardModule; Loading Loading @@ -51,7 +52,12 @@ import dagger.multibindings.IntoMap; /** * SystemUI objects that are injectable should go here. */ @Module(includes = {RecentsModule.class, StatusBarModule.class, KeyguardModule.class}) @Module(includes = { RecentsModule.class, StatusBarModule.class, KeyguardModule.class, CommunalModule.class, }) public abstract class SystemUIBinder { /** Inject into AuthController. */ @Binds Loading