Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 011c96c6 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Fix Coordinators failing to build with gradle build in sysui-studio

error: @Subcomponent.Builder is missing setters for required modules or subcomponents: [com.android.systemui.statusbar.notification.collection.coordinator.dagger.CoordinatorsModule]

Fixes: 204649316
Test: gradle build
Change-Id: I7e372d73a683cfb883512b48608043f23017053e
parent caeb5d27
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ import dagger.Provides
@Module
object SensitiveContentCoordinatorModule {
    @Provides
    @JvmStatic
    @CoordinatorScope
    fun provideCoordinator(
        dynamicPrivacyController: DynamicPrivacyController,
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ import javax.inject.Scope
@Module(subcomponents = [CoordinatorsSubcomponent::class])
object CoordinatorsModule {
    @SysUISingleton
    @JvmStatic
    @Provides
    fun notifCoordinators(factory: CoordinatorsSubcomponent.Factory): NotifCoordinators =
            factory.create().notifCoordinators