Adam
Adam
This would be easier if [TextResourceFactory](https://docs.gradle.org/current/kotlin-dsl/gradle/org.gradle.api.resources/-text-resource-factory/index.html?query=interface%20TextResourceFactory) was injectable, but unfortunately it's not https://github.com/gradle/gradle/issues/16134. I don't want to implement a custom workaround, which would be complicated, hard to test, and increase...
I can try and use an Ant task instead https://stackoverflow.com/a/69823963/4161471
Hey, thanks for updating to use the new property assignment! I'll get to this eventually, but it may take a couple of months - sorry. The files in directories like...
Thanks for the report, and the example project. I've checked it out and I can reproduce the problem. I think it's something to do with the `:material3` subproject having a...
I think this is a Gradle bug https://github.com/gradle/gradle/issues/27265. For some reason Gradle forgets about the 'artifactType' being set to 'jar'.
hi @MirzaUkas - I don't have any updates. Dokkatoo needs to get all of the compile-time dependencies of a project. For Android project here's the code that does it: https://github.com/adamko-dev/dokkatoo/blob/87679993a6504e16a8fabd6836471cdafd467bdf/modules/dokkatoo-plugin/src/main/kotlin/adapters/DokkatooAndroidAdapter.kt#L169-L213...
I've done a little bit more digging! There are apparently two problems: 1. the `Could not determine the dependencies of task ':dokkatooGenerateModuleHtml'` error is triggered in [DokkatooKotlinAdapter](https://github.com/adamko-dev/dokkatoo/blob/80cc32cff60cecfa5ad915de1244b6c3a3879f0c/modules/dokkatoo-plugin/src/main/kotlin/adapters/DokkatooKotlinAdapter.kt#L47-L56), not in [DokkatooAndroidAdapter](https://github.com/adamko-dev/dokkatoo/blob/80cc32cff60cecfa5ad915de1244b6c3a3879f0c/modules/dokkatoo-plugin/src/main/kotlin/adapters/DokkatooAndroidAdapter.kt#L29-L32)...
Thanks @EdricChan03! The AARs don't sound relevant for Dokka so I can leave them out. I think accessing the compilation of an Android project works fine at the moment. The...
`androidComponents.onVariants {}` doesn't seem to help either... Copy this into an Android project's `build.gradle.kts` and run `gradle logAndroidComponentsCompileClasspath` ```kotlin // build.gradle.kts /** Aggregate compile classpath from all Android components */...
I have a lead: `transformed/ui-release/jars/classes.jar` above *does* contain the required classes! However, it's not being passed to Dokka. In fact I only see one `classes.jar` being passed to Dokka. Maybe...