I got three projects A, B, C, with C being a multi...
# multiplatform
n
I got three projects A, B, C, with C being a multiplatform gradle module. A depends on B via
implementation(project(:B))
B depends on C via
implementation(project(:C))
I need to update B on C dependency to
api(project(:C))
in order to expose some C apis returned in B. However doing so result in:
Copy code
> Failed to apply plugin [id 'org.jetbrains.kotlin.multiplatform']
   > Project#afterEvaluate(Action) on project ':C' cannot be executed in the current context.
Am I doing something wrong? Should I open a bug somewhere?