atlantis210
06/09/2022, 12:32 PMKotlinPoet
and implemented it in the same project on IntelliJ and everything works fine. Now, I'm trying to import my compiled processor into my android project, but I don't succeed... I do the ./gradlew build
and retrieve the processor.jar
. I imported this into the libs
folder, but when I'm trying to run the android project, I have a NoClassDefFound
on com.squareup.kotlinpoet.FileSpec
. I tried excluding the transitivity because I have a use of another version of KotlinPoet, 1.11 vs 1.10.2, but in both FileSpec
exists... It's as if the jar is not including dependencies... I didn't find anything similar on the internet... I'm quite in a struggle here ^^"ephemient
06/09/2022, 3:29 PMatlantis210
06/09/2022, 3:37 PMJiaxiang
06/09/2022, 11:45 PMmavenLocal()
, or you can build a uber jar for your processor if you prefer.atlantis210
06/10/2022, 7:18 AM