https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
o

okarm

04/11/2021, 7:19 PM
Edit: message was not related to multiplatform, removed to reduce visual clutter.
e

ephemient

04/11/2021, 7:25 PM
even without multiplatform, you can't use tests in another gradle module without some real hacks
you might want to move the common parts of your tests to the
commonMain
of a new gradle module that both
:androidApp
and
:shared
depend on
👍 1
o

okarm

04/11/2021, 7:26 PM
I see, so that was my mistake. Thanks. I'll look for a way to move the tests to
:shared:androidTest
.