Hi all! We’re thinking of doing a multiplatform ...
# multiplatform
r
Hi all! We’re thinking of doing a multiplatform app, which consists of web frontend, Android and iOS apps. Is it possible to share a common Redux store (with some other business logic) between all three platforms, while writing the frontend with whatever popular webdev stack? I’m thinking of having the common Redux store written in Kotlin, then compiling it to Javascript so that the web frontend can consume it. Then writing the Android app entirely in Kotlin, and iOS app too, if Kotlin/Native is feasible enough for this. Is this possible? If so, is my high-level thinking of the structure right? 🙂