Tony Robalik

Results 391 comments of Tony Robalik
trafficstars

> I had this same issue, seems that it works fine on 1.28.0 👍 Yes, it seems likely this was caused by the migration to the new, non-deprecated AGP APIs...

I cannot reproduce this issue with the reproducer provided, and the changes suggested in [this comment](https://github.com/autonomousapps/dependency-analysis-gradle-plugin/issues/1112#issuecomment-1935270130). This seems like it might be a Kotlin incompatibility. This plugin currently uses Kotlin...

Resolved via https://github.com/autonomousapps/dependency-analysis-gradle-plugin/pull/1132

Thanks for the repro link. I note your case is not for test sources, but "production" debug sources. I can also see that the library that is failing has no...

Thanks for the issue. I actually think it would make sense to add a new data type for imports, since they have to go at the top of a file,...

Thanks for the report. Do you have a minimal reproducer?

Interestingly enough, this only happens with the exact setup you have. If your internal class instead looks like ```internal class MyClass(private val foos: List)``` then DAGP doesn't advise changing the...

I created another repro in my project and decompiled it to Java. Here's what it looks like. You can clearly see the public methods that "expose" the private property. ```java...