Don't inject the constructer. Instead create a normal constructor and only inject the repository.
@AndroidEntryPoint class CustomClass(val name: String) { @Inject lateinit val repository: Repository }