Josh Feinberg
09/17/2024, 3:55 AMkotlin-inject-anvil
and now i'm getting a FileAlreadyExistsException
. best way to debug this?Josh Feinberg
09/17/2024, 3:57 AM@AppScope
@Component
@MergeComponent
internal abstract class AppComponent(
@Component val clientComponent: ClientComponent,
)
with the @MergeComponent
annotation, i get the FileAlreadyExistsException
. if i remove it i get this other error
java.lang.IllegalStateException: Storage for [...\build\kspCaches\jvm\jvmMain\symbolLookups\id-to-file.tab] is already registered
eygraber
09/17/2024, 10:52 AM./gradlew --stop
) should fix it.Josh Feinberg
09/17/2024, 6:40 PMJosh Feinberg
09/17/2024, 6:41 PMFileAlreadyExistsException
exception though so this might be a anvil issueblakelee
10/17/2024, 2:26 PM@Component
to the constructor of another component would never work and would always throw the same errors as above