私のアプリケーションでは、依存性注入に Hilt を使用しています。RetrofitModule
次のように、リポジトリに依存関係を提供するためにを実装しました。
@Module
@InstallIn(ApplicationComponent::class)
object RetrofitModule {
@Singleton
@Provides
fun providesRetrofitClient(okHttpClient: OkHttpClient, baseUrl: String): Retrofit {
return Retrofit.Builder()
.baseUrl(baseUrl)
.addConverterFactory(GsonConverterFactory.create())
.client(okHttpClient)
.build()
}
@Provides
fun providesBaseUrl(application: MyApplication): String {
return application.getBaseUrl()
}
@Singleton
@Provides
fun providesOkHttpClient(): OkHttpClient {
val okHttpClientBuilder = OkHttpClient.Builder()
val loggingInterceptor = HttpLoggingInterceptor().apply {
level = HttpLoggingInterceptor.Level.BODY
}
okHttpClientBuilder.addInterceptor(loggingInterceptor)
return okHttpClientBuilder.build()
}
@Singleton
@Provides
fun providesService(retrofit: Retrofit): MyService {
return retrofit.create(MyService::class.java)
}
}
テスト中の Mockwebserver 構成のテスト ベース URL を提供するために、MyApplication
andMyApplicationTest
クラス内に関数を実装しました。
MyApplication.class
class MyApplication : Application() {
fun getBaseUrl() = "https://www.foo-production.com"
}
MyApplicationTest.class
class MyApplicationTest : Application() {
fun getBaseUrl() = "http://127.0.0.1:8080"
}
しかし、アプリをビルドすると、次のエラーが発生します。
A binding with matching key exists in component: de.xxx.xxx.MyApplication_HiltComponents.ApplicationC
...
問題はこの方法だと思います
@Provides
fun providesBaseUrl(application: MyApplication): String {
return application.getBaseUrl()
}
MyApplicationクラスを提供することで問題があります