Skip to content

Instantly share code, notes, and snippets.

@ramonrabello
Created July 28, 2020 02:11
Show Gist options
  • Save ramonrabello/724aac842c3370dbe7e06a430beec9db to your computer and use it in GitHub Desktop.
Save ramonrabello/724aac842c3370dbe7e06a430beec9db to your computer and use it in GitHub Desktop.
Hilt Series: Architecture Components com Hilt - Android Entry Point
@AndroidEntryPoint
class MainActivity: AppCompatActivity() {
private val viewModel: LoggingViewModel by viewModels()
override fun onCreate(savedInstanceState) {
super.onCreate(savedInstanceState)
viewModel.log(“Initializing main screen”)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment