I found the solution! You need to specify for it t...
# multiplatform
s
I found the solution! You need to specify for it to use the proper configuration. I was trying
jvmMainApi
and
jvmCompile
and all sorts of variations of configs that are supplied by the multiplatform plugin, but the one I needed was
jvmDefault
.
Copy code
api(project(":android-remote","jvmDefault"))
It now sees `android-remote`'s dependencies correctly!
🎉 3