Vadim Mezentsev

Results 2 comments of Vadim Mezentsev

@vigneshvg Thanks for answer. It helps for main purposes but not for Targets. I found a problem with loading via CustomViewTarget. I'd share an example: ```kotlin // ... val target...

Filter your classpath from excess dependencies. It helps me: ``` val javaCompiler = variant.javaCompiler as AbstractCompile javaCompiler.doLast { val args = arrayOf( "-showWeaveInfo", "-1.5", "-inpath", javaCompiler.destinationDir.toString(), "-aspectpath", javaCompiler.classpath.asFileTree.filter { !it.canonicalPath.contains("transforms")...