Hi all, I'm running into an issue with a multiplat...
# multiplatform
g
Hi all, I'm running into an issue with a multiplatform project where I need to add the test code of my common project as a dependency in the test code of my main project. I have tried to set it up like the below, but when I use
implementation(project(":common"))
it does not add the test source set code as a dependency, only the main source set code of my common project gets added as a dependency. Is there a way to add the test source set code of my common project as a dependency to the tests of my main project?
tl;dr no, not for now on non-jvm platforms
g
Ah thats unfortunate. Thanks
I did achieve what I was trying to do. I did it by setting up my project this way. The shared js code are their own projects.