Tony Robalik

Results 388 comments of Tony Robalik
trafficstars

Yes, I have seen the conversation but have been preoccupied with other things and unable to respond. I actually met with @jjohannes at the Gradle DPE Summit last week and...

Is that all of the advice? Or is there more, like used transitive advice?

> So for Android projects we can use Gradle 8.0+, and for JVM project it's Gradle 7.4+, correct? Yup.

Thanks for the issue. I'm unlikely to be able to work on this in the near future.

Thanks for the issue! I think that was an intentional decision, but I'm not sure it's well-justified.

I don't know that it needs a flag. If you wanted to contribute, I think just showing both exposed and used together would be ok. Note that the list can...

I am confused! When you use `abi.exclusions.excludeSourceSet("integrationTest")`, you're telling DAGP that the `integrationTest` source set **does not have an ABI**. Therefore, no dependency can be declared on the `integrationTestApi` configuration,...

> ...those particular dependencies are declared as api, not integrationTestApi > ...those are all implementation, not integrationTestImplementation wow, what a weird bug, in that case!

I'm afraid this is due to some change in KGP -- I would argue it is a rather extreme bug. At [this line](https://github.com/autonomousapps/dependency-analysis-gradle-plugin/blob/main/src/main/kotlin/com/autonomousapps/tasks/FindDeclarationsTask.kt#L70), I dropped a breakpoint, and I've attached...

Can you use the `whenObjectAdded` callback on your integrationTestX configurations? Maybe if you add the callback _before_ calling `associateWith`, you'll see the deps get added? It's all very order-dependent.