如果没有@Provides 注释的方法,则无法提供 Dagger/MissingBinding Repository

时间:2021-04-04 00:09:56

标签: android dagger-2 dagger-hilt

我正在尝试使用 Hilt 设置多模块 Android 应用程序,但在设置完所有内容后出现以下错误:

D:\Projetos\historico-de-notificacoes\app\build\generated\source\kapt\debug\br\com\firstsoft\historiconotificacoes\src\NotificationHistoryApplication_HiltComponents.java:124: error: [Dagger/MissingBinding] br.com.firstsoft.historiconotificacoes.domain.src.repository.NotificationRepository cannot be provided without an @Provides-annotated method.
  public abstract static class SingletonC implements NotificationHistoryApplication_GeneratedInjector,
                         ^
      br.com.firstsoft.historiconotificacoes.domain.src.repository.NotificationRepository is injected at
          br.com.firstsoft.historiconotificacoes.domain.src.usecase.notification.GetRecentNotificationsUseCaseImpl(notificationRepository)
      br.com.firstsoft.historiconotificacoes.domain.src.usecase.notification.GetRecentNotificationsUseCaseImpl is injected at
          br.com.firstsoft.historiconotificacoes.domain.src.usecase.UseCaseModule.bindsGetRecentNotificationsUseCase(arg0)
      br.com.firstsoft.historiconotificacoes.domain.src.usecase.notification.GetRecentNotificationsUseCase is injected at
          br.com.firstsoft.historiconotificacoes.src.notifications.recent.RecentViewModel(getRecentNotificationsUseCase)
      br.com.firstsoft.historiconotificacoes.src.notifications.recent.RecentViewModel is injected at
          br.com.firstsoft.historiconotificacoes.src.notifications.recent.RecentViewModel_HiltModules.BindsModule.binds(vm)
      @dagger.hilt.android.internal.lifecycle.HiltViewModelMap java.util.Map<java.lang.String,javax.inject.Provider<androidx.lifecycle.ViewModel>> is requested at
          dagger.hilt.android.internal.lifecycle.HiltViewModelFactory.ViewModelFactoriesEntryPoint.getHiltViewModelMap() [br.com.firstsoft.historiconotificacoes.src.NotificationHistoryApplication_HiltComponents.SingletonC ? br.com.firstsoft.historiconotificacoes.src.NotificationHistoryApplication_HiltComponents.ActivityRetainedC ? br.com.firstsoft.historiconotificacoes.src.NotificationHistoryApplication_HiltComponents.ViewModelC]

我的代码设置如下:

:domain

plugins {
    id("com.android.library")
    id("kotlin-android")
    id("kotlin-kapt")
    id("dagger.hilt.android.plugin")
}

dependencies {
    implementation(Libs.Kotlin.stdLib)

    implementation(Libs.Coroutines.core)

    implementation(Libs.Paging.runtime)

    implementation(Libs.Hilt.core)
    kapt(Libs.Hilt.compiler)
}

:data

plugins {
    id("com.android.library")
    id("kotlin-android")
    id("kotlin-kapt")
    id("dagger.hilt.android.plugin")
}

dependencies {
    implementation(project(":domain"))

    implementation(Libs.Kotlin.stdLib)

    implementation(Libs.Room.runtime)
    implementation(Libs.Room.ktx)
    kapt(Libs.Room.compiler)

    implementation(Libs.Paging.runtime)

    implementation(Libs.Hilt.core)
    kapt(Libs.Hilt.compiler)

    implementation(Libs.Android.annotation)

    implementation(Libs.Util.gson)
}

:app

plugins {
    id("com.android.application")
    id("kotlin-android")
    id("kotlin-kapt")
    id("dagger.hilt.android.plugin")
}

dependencies {
    implementation(project(":domain"))

    implementation(Libs.Kotlin.stdLib)

    ...

    implementation(Libs.Hilt.core)
    kapt(Libs.Hilt.compiler)
}

:domain 里面我有:

interface NotificationRepository {}

:data 里面我有:

class NotificationRepositoryImpl @Inject constructor(
    private val notificationDao: NotificationDao
) : NotificationRepository


@Module
@InstallIn(SingletonComponent::class)
abstract class RepositoryModule {

    @Binds
    abstract fun bindsNotificationRepository(impl: NotificationRepositoryImpl): NotificationRepository
}

我不知道我在哪里搞砸了,但这不应该起作用吗?如果没有,我做错了什么?

0 个答案:

没有答案