Code Monkey home page Code Monkey logo

Comments (3)

Chang-Eric avatar Chang-Eric commented on August 20, 2024

Sorry I'm not entirely following. Aren't the dagger.android docs talking about when you should inject the Activity while the Hilt docs are talking about when the Fragment is injected?

from dagger.

arekolek avatar arekolek commented on August 20, 2024

Hilt docs have a code snippet with Fragment code, yes, but discuss any @AndroidEntryPoint that has a parent, which means it could be an Activity too:

If you mark an @AndroidEntryPoint class with @OptionalInject (...) This gives you the chance to provide dependencies in a different way

dagger.android docs talk about both too. Part about fragments is this:

before calling super (...) DaggerFragment does the same in onAttach(), which also prevents inconsistencies if the Fragment is reattached.

Furthermore, even if it was like you say, let's say we want to follow dagger.android advice for an Activity: If I try checking OptionalInjectCheck.wasInjectedByHilt(this) before super.onCreate(savedInstanceState), then it will simply not work, because wasInjectedByHilt will return correct value only if it is called after super

I edited OP to try and make this more clear

from dagger.

Chang-Eric avatar Chang-Eric commented on August 20, 2024

Ooh I got it now, thanks. This is a good question!

This is actually fairly tricky, but I think to do it you for an Activity you would want to register an OnContextAvailableListener and do the injection logic in there. As long as your OnContextAvailableListener is registered after the Hilt one (and this should happen because we register our listener in the Hilt base class's constructor, so even doing it in your constructor should put yours after ours since super constructors would be called first), then it should work. These listeners get called within the onCreate of the Android Activity base class and so should also satisfy the dagger.android docs where these are called before fragments are attached.

I can update the documentation, thanks for pointing this out!

from dagger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.