Using Dagger2 and Kotlin, my component class implementations are not generated when another call code exists. If the call code does not exist, implementations are generated.
eg.
val comp = DaggerMyComponent.create()
Causes assembly failures, DaggerMyComponent not generated and therefore cannot be found
The DaggerMyComponent class DaggerMyComponent generated and can be viewed on disk, assembly completed successfully.
I tried Dagger 2.0.1, 2.0.2, 2.1-Snapshot using Kotlin beta-1103. I can publish my gradle file, source code or stack trace if necessary.
Has anyone encountered this problem before?
source share