我从未在使用 Hilt 时看到在模块类中注入构造函数。我尝试使用,没有收到任何错误。当我们注入改造时,我们使用对象类。但我们可以使用普通类和注入构造函数关键字来创建模块类的对象。我的意思是像下面的代码。为什么我们不应该像下面这样编码?
@Module
@InstallIn(SingletonComponent::class)
class NetworkModule @Inject constructor () {
@Provides
fun provideRetrofit(): Retrofit {
return Retrofit.Builder()
.baseUrl("https://example.com")
.build()
}
}