Nicklas Ansman

Results 131 comments of Nicklas Ansman

Any news on this? It's extremely inconvenient to have to each all developers about artifactory.

Unfortunately, simply building the included build isn't enough to make CC work. You get errors like this when CC is being reused: ``` Could not load the value of field...

@lcian is there any traction here? Our top exceptions are all suffering from this issue and it makes it really hard to see which is which.

I can’t answer those questions alone, but I can give context about the exception itself. It’s added by Coroutines to aid debugging. It does have some useful information but I...

You can exclude them by name: ```kotlin excludedClasses.addAll( "*\$InstanceHolder", "ComposableSingletons*", "Hilt_*", "*\$DefaultImpls" ) ```

Also, like I mentioned in my description I agree that excluding annotated classes probably shouldn't exclude inner classes if they're not annotated but I do think kover need to add...

This is an interesting idea, I did not know about `@BindValue`. I don't think it's possible to do exactly what you suggest because you'd still need to have `@BindValue` on...

I got some time to look into this but I don't think this is possible unfortunately. The generated code cannot use `@UninstallModules` because that can only be added to the...

This is an interesting idea. It is annoying when you need to access generated code before it's generated. The workflow because tedious because you need to add your VM with...

Unfortunately Kotshi doesn't have support for generating aggregate factories across modules. This mostly stems from a limitation in KSP/KAPT as it can only find annotated classes in a single module....