Got a quick question around modules in KMP project...
# multiplatform
a
Got a quick question around modules in KMP projects. Using the compose multiplatform starter project, the "shared" module is what the podspec uses to reference for the iOS app. This means it is, in effect, the cross-platform "root" module for the iOS app, and even in some ways for the Android app (though it's referenced by the Android module). Any new "child" modules that become dependencies, would be referenced by the "shared" module correct? Does anything need to be added to the iOS pod config, or will it all be rolled up for the iOS build?
k
for some libraries you might need to add more into the reference modules build gradle but normally there is no need
a
Okay, thanks! I'm going to eventually try to create some child kmp modules, I can report back with my findings here too 🙂