-
public final class AndroidModulesKt
-
-
Field Summary
Fields Modifier and Type Field Description private final StringAPPLICATIONprivate final StringAPPLICATION_CONTEXTprivate final StringACTIVITYprivate final StringACTIVITY_CONTEXTprivate final StringSUPPORT_FRAGMENTprivate final StringSUPPORT_FRAGMENT_CONTEXT
-
Method Summary
Modifier and Type Method Description final StringgetAPPLICATION()final StringgetAPPLICATION_CONTEXT()final StringgetACTIVITY()final StringgetACTIVITY_CONTEXT()final StringgetSUPPORT_FRAGMENT()final StringgetSUPPORT_FRAGMENT_CONTEXT()final ModuleApplicationModule(Application app)Provides a named binding of ApplicationasAPPLICATIONand of the applicationContextasAPPLICATION_CONTEXT.final ModuleActivityModule(Activity activity)Provides a named binding of ActivityasACTIVITYand of the Activity'sContextasACTIVITY_CONTEXT.final ModuleSupportFragmentModule(Fragment fragment)Provides a named binding of FragmentasSUPPORT_FRAGMENTand of the Fragment'sContextasSUPPORT_FRAGMENT_CONTEXT.-
-
Method Detail
-
getAPPLICATION
final String getAPPLICATION()
-
getAPPLICATION_CONTEXT
final String getAPPLICATION_CONTEXT()
-
getACTIVITY
final String getACTIVITY()
-
getACTIVITY_CONTEXT
final String getACTIVITY_CONTEXT()
-
getSUPPORT_FRAGMENT
final String getSUPPORT_FRAGMENT()
-
getSUPPORT_FRAGMENT_CONTEXT
final String getSUPPORT_FRAGMENT_CONTEXT()
-
ApplicationModule
final Module ApplicationModule(Application app)
Provides a named binding of
ApplicationasAPPLICATIONand of the applicationContextasAPPLICATION_CONTEXT.
-
ActivityModule
final Module ActivityModule(Activity activity)
Provides a named binding of
ActivityasACTIVITYand of the Activity'sContextasACTIVITY_CONTEXT.Note: This module should only be referenced from a Component located in an
Activityor else Activity/memory leaks might be introduced!
-
SupportFragmentModule
final Module SupportFragmentModule(Fragment fragment)
Provides a named binding of
FragmentasSUPPORT_FRAGMENTand of the Fragment'sContextasSUPPORT_FRAGMENT_CONTEXT. Note that the Fragment's Context may benull.
-
-
-
-