I'm trying to do this setup Android App -> Andr...
# multiplatform
s
I'm trying to do this setup Android App -> Android AAR -> common-jvm -> common and am having mixed success. The app can see classes in the AAR. The AAR can see classes in the common-jvm jar. The problem is that I want to have the App access classes in the common-jvm.jar but I'm not having any luck. The code can be found at https://github.com/samus/pistachio
r
You need to use
api
instead of
implementation
in the
build.gradle
of
android-aar
if you want the aar projects dependencies to be visible to other modules
s
Thank you that was what I was missing.