How do we call functions from `commonMain` source ...
# multiplatform
s
How do we call functions from
commonMain
source set from the consumer of the corresponding android target AAR? Right now my project has a couple public composables defined in
commonMain
, but they're not visible to my android project. The AAR is resolved via
mavenLocal
at the moment
c
Are you using
api
instead of
implementation
for the dependencies you want your consumer project to be able to have access to?
s
yeah i was using api.. I think it ended up being a gradle sync / android studio autocomplete / cache issue. Im now able to reference functions from commonMain
👍 1