Created
July 28, 2020 02:27
-
-
Save ramonrabello/29e936d05206f22a6292e286a8c11152 to your computer and use it in GitHub Desktop.
Hilt Series: Architecture Components com Hilt - LoggingViewModel_HiltModule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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