Created
September 21, 2020 13:56
-
-
Save aleksandarzekovic/284c5ebd19c13d602e3e29b69499e8b4 to your computer and use it in GitHub Desktop.
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
| class MainActivity : AppCompatActivity() { | |
| override fun onCreate(savedInstanceState: Bundle?) { | |
| super.onCreate(savedInstanceState) | |
| setContentView(R.layout.activity_main) | |
| DaggerCarComponent.builder().build().getCar().startCar() | |
| } | |
| } | |
| //output: me.aleksandarzekovic.dagertohilt D/TAG: Engine is turn on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment