PickMe Theekshana Alwis Apr 22, 2026

Beyond Local Rendering: Building a Server-Driven UI System with RemoteCompose

Article Summary

Theekshana Alwis from PickMe built a subscription screen that updates instantly—no app store approval, no waiting. He used RemoteCompose to turn Jetpack Compose UI into a binary format streamed from the server.

RemoteCompose is an experimental Android technology that enables server-driven UI by converting Jetpack Compose components into binary format. Alwis walks through building both the server (using Ktor) and client sides, demonstrating how to push UI changes in seconds instead of waiting for Play Store reviews.

Key Takeaways

Critical Insight

RemoteCompose enables instant UI updates for Android apps by streaming binary-formatted Jetpack Compose from the server, eliminating the wait for app store approval.

The article includes full implementation code and reveals specific API limitations you'll hit when trying to replicate common Compose patterns.

About This Article

Problem

Updating Android UIs the traditional way means rebuilding the entire app, running tests, and waiting for Play Store approval. When designers need to fix a layout or change a button color in production, this process creates real delays.

Solution

Theekshana Alwis built RemoteCompose with a Ktor Server backend using Profile API level 37 and RemoteComposeContext. The system serializes Jetpack Compose UI into ByteArray format, which the Android client then renders through RemoteDocumentPlayer.

Impact

UI changes now reach users in seconds instead of waiting weeks for app store reviews. The subscription screen implementation shows this in action, updating designs instantly without any new app release needed.