Created
July 28, 2020 02:11
-
-
Save ramonrabello/724aac842c3370dbe7e06a430beec9db to your computer and use it in GitHub Desktop.
Hilt Series: Architecture Components com Hilt - Android Entry Point
This file contains hidden or 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
@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