does anyone know how the kotlin targets `androidTe...
# multiplatform
e
does anyone know how the kotlin targets
androidTest
and
androidAndroidTest
interact? I can’t run instrumentation tests unless I comment out `androidTest`’s dependencies due to a duplicate class exception. Also, my
androidTest
unit tests don’t pass if I have dependencies in
androidAndroidTest
, but they pass once I comment the instrumentation dependencies out.
👀 1
For context, I’m migrating an existing Android application (where all tests compile/pass) into a multiplatform project targeting both Android and iOS
v
I’m facing the exact same issue than you, did found a way to fix that ?