I'm trying to implement Dagger as a dependency injector in an IntelliJ project, but my code is failing on:
import javax.inject.Inject;
Intellij is finding the 'javax
' package, but not the 'inject
' package, so it fails.
I am new to Android, so I apologize if this is a no brainer, but can anyone tell me why the inject package is not being found?