Stupid question: If I have a multiplatform project...
# multiplatform
j
Stupid question: If I have a multiplatform project, and want to make the commonMain of that project to import another commonMain from another module. Is this not the correct way of doing that
implementation(project(":SharedGlobals"))
?
Given that the module in question builds fine
The error i'm getting:
Copy code
ERROR: Unable to resolve dependency for ':SharedModuleOne@release/compileClasspath': Could not resolve project :SharedModuleTwo.
s
Are all modules included inside your settings.gradle?
j
Yes. However,
SharedModuleOne
has also android and iOS targets along with the common