Maybe a dumb question... but I currently have an android project with 3 gradle modules.
1. android app module
2. jvm only networking module (okhttp)
3. jvm only db module (sqldelight)
what would be the technique to migrate to a kmp + kmp compose app? This is what I think the steps would be but will take any advice
1. adroid app module can stay, but have most stuff transplanted into a sharedApp module. this will contain compose multiplatform
2. networking module has to be converted to ktor
3. db module can stay the same because sqldelight is kmp already?
or would I have to combine all of my networking and db stuff into a single "shared" module? (for example, every video ive seen so far on kmp will always show a single shared module so maybe thats what i should be doing too?)