Any recommendations on how to set up multiple mult...
# multiplatform
m
Any recommendations on how to set up multiple multiplatform projects together? I have something like projects A and B with a shared core project. My javascript output for project A has the shared code packaged with it, but my android aar for project A does not. I can publish the aar for the shared project, and have the consuming android project pull in both as a dependency, but it seems a little weird that javascript output is combined while the android isn't.
l
Android tooling doesn't support fat AARs. You need to publish to mavenLocal or another repository to have the dependencies declared in the pom.xml (and gradle metadata files for Gradle 6+)