Skip to content

Instantly share code, notes, and snippets.

@ramonrabello
Created July 28, 2020 02:27
Show Gist options
  • Save ramonrabello/29e936d05206f22a6292e286a8c11152 to your computer and use it in GitHub Desktop.
Save ramonrabello/29e936d05206f22a6292e286a8c11152 to your computer and use it in GitHub Desktop.
Hilt Series: Architecture Components com Hilt - LoggingViewModel_HiltModule
@Generated("androidx.hilt.AndroidXHiltProcessor")
@Module
@InstallIn(ActivityRetainedComponent.class)
@OriginatingElement(
topLevelClass = LoggingViewModel.class
)
public interface LoggingViewModel_HiltModule {
@Binds
@IntoMap
@StringKey("com.github.ramonrabello.android.dagger.hilt.LoggingViewModel")
ViewModelAssistedFactory<? extends ViewModel> bind(LoggingViewModel_AssistedFactory factory);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment