Git Product home page Git Product logo

Comments (5)

JakeWharton avatar JakeWharton commented on April 28, 2024

More issue info: MainActivity is in Kotlin, BaseActivity is in Java. Kotlin classes are not visible to the annotation processor.

from dagger.

PaulWoitaschek avatar PaulWoitaschek commented on April 28, 2024

How was this resolved?

I face the same problem and use kapt for the dagger processor. Shouldn't that solve the issue?

from dagger.

netdpb avatar netdpb commented on April 28, 2024

That note is there because if you provide or inject a class that has an @Inject annotation but you didn't run Dagger over that class, Dagger generates the required code for that class lazily but reminds you that you should explicitly run the processor yourself.

We had a bug where Dagger emitted that note even for classes that don't have an @Inject annotation at all, even if you do run the Dagger processor over that class. I guess your MainActivity counts.

The bug is now fixed at head, and will be pushed in the next snapshot.

from dagger.

PaulWoitaschek avatar PaulWoitaschek commented on April 28, 2024

I do have that issue since I switched to kotlin.

kapt "com.google.dagger:dagger-compiler:$daggerVersion"

Shouldn't that make dagger generate the code?

from dagger.

netdpb avatar netdpb commented on April 28, 2024

I don't know Kotlin or kapt. And you haven't included your MainActivity source code, so I'm guessing here.

But if MainActivity does not have any @Inject annotations itself, maybe instead relying on some in its superclasses, then even if you successfully run Dagger over that class it doesn't see any reason to generate a MainActivity_MembersInjector class in advance. Then when it processes your @Component, it realizes you need a MembersInjector<MainActivity>, so it generates one just-in-time and emits that note.

The bug (now fixed at head) is that it emits the note telling you to run Dagger over the MainActivity class even if you did run Dagger over the MainActivity class because it can't tell the difference between didn't-run and ran-but-didn't-generate-code.

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.