Skip to content

Instantly share code, notes, and snippets.

@tompee26
Last active December 5, 2018 04:23
Show Gist options
  • Save tompee26/c54d434249e16b3a5c45eac460049d80 to your computer and use it in GitHub Desktop.
Save tompee26/c54d434249e16b3a5c45eac460049d80 to your computer and use it in GitHub Desktop.
MainFragment.kt
class MainFragment : Fragment() {
@Inject
lateinit var hero : Hero
override fun onAttach(context: Context?) {
AndroidSupportInjection.inject(this)
super.onAttach(context)
Log.d("InjectionTest", hero.name)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment