#android
13 posts tagged android.
Jun 27, 2026 · 17:007 min
Reading Android Bench: scores, cost, and the efficiency trap
Google's Android Bench scores LLMs on real Android engineering tasks. A look at what the June 2026 leaderboard actually says — why the top is a statistical tie, where the real cost-efficiency winners are, and the trap hiding in the cost and latency columns.
Jun 24, 2026 · 21:0028 min
Putting an AI Agent Inside an Android App with Google's ADK
Google shipped ADK for Android in May. I built a Compose app — clean architecture, MVI, Hilt, persistent chat history — where a Gemini agent calls real on-device functions, and hit every sharp edge the docs don't mention.
Jun 21, 2026 · 21:0020 min
Android App Functions: turning your app into a tool an agent can call
A hands-on walkthrough of Android's experimental AppFunctions API. I build a small but complete notes app, expose four functions to on-device agents with @AppFunction, and trace exactly what the KSP compiler generates and how the system discovers and invokes them.
Jun 16, 2026 · 22:0024 min
Developing for Foldables — making your Compose UI fold-aware
Part 2 of the foldables series. We build an adaptive media player in Jetpack Compose that reacts to tabletop and book postures with Jetpack WindowManager, picks list-detail layouts with window size classes, and verify all of it on the Pixel Fold emulator.
May 9, 2026 · 09:007 min
The Agent Wrote the Code. I Wrote the Prompts. Here's the Full Story.
I've spent months building Android apps — todo, drawing, live wallpaper, launcher, Kotlin Multiplatform, full-stack with Ktor — entirely with Claude Code, without writing a line myself. This is an honest account of what worked, what didn't, what it cost, and what I think it means for how software gets built next.
May 2, 2026 · 10:007 min
I Gave Claude Code a 33-Page Spec. It Built a Production Android SDK in 12 Minutes.
Part 1 of 2: An experiment in using an AI coding agent to autonomously generate, publish, and document a complete Android analytics library — from a technical design doc to a live JitPack release.
Apr 24, 202610 min
Android Architecture Patterns in 2026
A practical look at MVI, MVVM, and clean architecture in modern Android apps — when to use each and what the tradeoffs actually are.
Apr 22, 2026 · 09:0027 min
Type-safe navigation in Compose — the right way to migrate
Navigation 2.8 replaced string routes with serializable classes. Here is what that migration looks like in a real app, including nested graphs, deep links, and back-stack manipulation.
May 14, 2023 · 11:187 min
Understanding Foldables
This blog explores the types of foldable devices, challenges and opportunities they present for app developers.
Dec 24, 2017 · 09:004 min
Notification Channels in Android O
Android O handed users direct control over notification categories — sound, vibration, lock screen visibility, and Do Not Disturb overrides, all per channel. Here's how to create channels and assign notifications to them.