Hey android team. How close are we in achieving ho...
# compose-android
b
Hey android team. How close are we in achieving hot reload on android? As far as I know, I think it's available on the desktop app. And for mobile, the best alternative seems to be compose hotswan which is again not free. I was really hoping that this feature would be available. Esp coming from Flutter background where the main selling point used to be hot reload, I miss it dearly on compose android.
c
What make you think that is even on the roadmap? Hot reload for desktop depends on the JVM - there is no JVM on Android 😅 https://kotlinlang.slack.com/archives/C01D6HTPATV/p1772009342535049?thread_ts=1771952392.513339&channel=C01D6HTPATV&message_ts=1772009342.535049
c
you can try hot reload from skydoves https://hotswan.dev/
c
the best alternative seems to be compose hotswan which is again not free
c
whoops. missed that part.
s
Android apps have Live edit, which is basically what hotswan is, just a different wrapper. ART does not support redefinition of classes and methods, so both are very limited.
b
Ahh ok. Maybe I haven't checked Live edit. Thanks