https://kotlinlang.org logo
Title
u

540grunkspin

08/29/2017, 7:57 AM
The error i get is “cycling dependency detected error.NonExistentClass is injected at” and the location it is injected at is where i bind Interface.Factory so more or less is seems like the Implementation.Factory class becomes NonExistentClass in the incremental build for some reason.
g

gildor

08/29/2017, 12:49 PM
There is some real problem in your code. NonExistentClass is just symptom (placeholder that should be replaced during AP). Try to check full gradle logs. Also, you can try to use:
kapt {
    correctErrorTypes = true
}
u

540grunkspin

08/29/2017, 2:42 PM
Cool gonna try the correct flag. Hopefully it will work 😄