Individual Author Arman Chatikyan Mar 10, 2026

Remote Compose: Back to the Future

Article Summary

Arman Chatikyan just built a visual UI editor that deploys Android screens without app updates. Remote Compose lets you design layouts in a browser and render them natively on device—no WebViews, no JSON schemas, no code.

AndroidX quietly released Remote Compose (currently alpha05), a framework that captures UI as binary drawing operations on a server and plays them natively on Android. Unlike traditional server-driven UI approaches that map JSON to views or rely on WebViews, Remote Compose transmits actual rendering instructions that execute natively.

Key Takeaways

Critical Insight

Remote Compose enables true server-driven native UI by transmitting drawing operations instead of component descriptions, eliminating the performance and maintenance costs of traditional approaches.

The web editor pipeline reveals how far you can push Remote Compose beyond simple server updates, and Google I/O timing suggests bigger announcements ahead.

About This Article

Problem

Traditional server-driven UI approaches force you to choose between limitations. JSON schemas can't handle complex animations. WebViews tank performance. Custom DSLs turn into maintenance headaches.

Solution

Arman Chatikyan built a web editor where you drag and drop UI elements, and it converts them to JSON. GitHub Actions then transforms that JSON into compact binary .rc documents using RemoteComposeWriter.

Impact

The whole creation pipeline runs on the server without needing the Android SDK. Designers can push native UI changes live instantly, no app updates required, and there's no client-side schema mapping to worry about.