Question.. ```JavaCompile javaCompile = varia...
# android
t
Question..
Copy code
JavaCompile javaCompile = variant.javaCompiler
    javaCompile.doLast { ... }
Has all of the kotlin code gone through compilation, and the .class files written to the output directory before javaCompile.doLast {} is invoked? I’m trying aspectj weaving in this step and its not processing any compiled kotlin classes Is there another step I should be weaving Kotlin class files?