interesting problem - I have `common`, `common-and...
# multiplatform
d
interesting problem - I have
common
,
common-android
and
app
modules .. in
common-android
i have
expectedBy project(":common")
. And If I have in
app
module
implementation project (':common')
IDE can see the classes from
common
module, but when i ran the app, it fails that there are Unresolved references to those class .. however if i switch to
implementation project (':common-android')
in the
app
module, IDE cant see the classes, but build works..am i missing something?
f
Funny I have the exact opposite problem, IDE shows references in red, but it builds just fine