Y
Size: a a a
SV
SV
ES
AK
ES
ES
ES
AK
ES
Y
AK
class SomeModule{
val someString: String = ""
@Provides
@Named("some_string")
fun provideStr() = someString
}
@Component(modules = [SomeModule::class])
interface SomeComponent{
fun getPresenter(): Presenter
}
class Presenter @Inject constructor(@Named("some_string")val someString: String)AK
AK
ES