通过下面的设置,我无法将 Singleton 对象注入到动态功能模块内的 Activity 中。我可以注入子组件 MainActivity,但不能注入动态功能模块中的 Activity。
@Component(modules = [AppModule::class])
interface AppComponent {
fun inject(application: Application)
@Component.Factory
interface Factory {
fun create(@BindsInstance application: Application): AppComponent
}
// Types that can be retrieved from the graph
fun mainActivityComponentFactory(): MainActivitySubComponent.Factory
}
我的应用模块
@Module(includes = [AppProviderModule::class])
abstract class AppModule {
@Binds
abstract fun bindContext(application: Application): Context
}
@Module
object AppProviderModule {
@Provides
@Singleton
fun provideSharedPreferences(application: Application): SharedPreferences {
return application.getSharedPreferences("PrefName", Context.MODE_PRIVATE)
}
}
动态功能模块库组件
@GalleryScope
@Component(
dependencies = [AppComponent::class],
modules = [GalleryModule::class])
interface GalleryComponent {
fun inject(galleryActivity: GalleryActivity)
}
和我的应用程序
open class MyApplication : Application() {
// Instance of the AppComponent that will be used by all the Activities in the project
val appComponent: AppComponent by lazy {
initializeComponent()
}
open fun initializeComponent(): AppComponent {
// Creates an instance of AppComponent using its Factory constructor
// We pass the applicationContext that will be used as Application
return DaggerAppComponent.factory().create(this).apply {
inject(this@MyApplication)
}
}
}
动态功能模块中的活动,当仅注入GalleryViewer
并DummyDependency
从中注入GalleryModule
时工作正常
class GalleryActivity : AppCompatActivity() {
@Inject
lateinit var sharedPreferences: SharedPreferences
@Inject
lateinit var galleryViewer: GalleryViewer
@Inject
lateinit var dummyDependency: DummyDependency
override fun onCreate(savedInstanceState: Bundle?) {
DaggerGalleryComponent.builder()
.appComponent((application as MyApplication).appComponent)
.build()
.inject(this)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_gallery)
}
当我尝试注入 SharedPreferences 或任何不依赖于任何参数(如上下文或应用程序)的依赖项时,AppModule
我得到错误
error: [Dagger/MissingBinding] android.content.SharedPreferences cannot be provided without an @Provides-annotated method.