Google introduced new Android development tools that enable building apps up to 3x faster by using AI agents, including a redesigned Android command-line interface (CLI), structured skills", and an integrated knowledge base. These tools are designed to support agent-driven workflows and are compatible with third-party agents such as Claude Code and Codex, in addition to Google Gemini.
This collection of tools is designed to eliminate the guesswork of core Android development workflows when you direct an agent’s work outside of Android Studio, making your agents more efficient, effective, and capable of following the latest recommended patterns and best practices.
At the core of this solution is a redesigned Android CLI, which provides consistent, scriptable access to the Android toolchain. Using it, agents can create projects, build and run applications, manage emulators, and install all the required SDK components.
Compared to using an agent within Android Studio, Google says the machine-friendly interface exposed by Android CLI can reduce LLM token usage by more than 70% and enable tasks to be completed 3x faster.
Google also introduced Android Skills, a collection of files that describe how specific development tasks should be performed:
Skills are modular, markdown-based (
SKILL.md) instruction sets that provide a technical specification for a task and are designed to trigger automatically when your prompt matches the skill's metadata, saving you the hassle of manually attaching documentation to every prompt.
Using these Android Skills, agents can follow established workflows for tasks such as implementing edge-to-edge support, setting up Navigation 3 or migrating an existing codebase to it, upgrading to AGP 9, and converting XML-based UIs to Compose, among others.
Another component is a built-in knowledge base that agents can query in real time, providing access to up-to-date Android, Firebase, and Kotlin documentation. The knowledge base will be updated frequently, Google says, so "even if an LLM's training cutoff is a year old, it can still provide guidance on the latest frameworks and patterns we recommend today".
The new tools introduced by Google are not meant to replace Android Studio, which remains the tool to go to for refinement, debugging, and optimization:
you can start a prototype quickly with an agent using Android CLI and then open the project in Android Studio to fine-tune your UI with visual tools for code editing, UI design, deep debugging, and advanced profiling that scale with the growing capabilities of your app.
Reactions from the developer community have been mixed. One commenter, Puzzleheaded-Force64, pointed out that Google did not clarify "what kinds of tasks were they benchmarking", which matters significantly. However, he agreed that the direction seems promising.
Similarly, Naive-Pride-8928 observed that "most agentic Android workflows I've seen are brutal on token usage, you end up paying for a lot of back and forth that doesn't actually move the task forward" and that the new Android CLI could reduce that.
On the other hand, KindheartednessOld50 observed that the biggest hurdle to development speed is not project setup, but the need to test and verify the code generated by the agent. Satoryvape echoed a similar sentiment remarking that "3x faster but I'd like to have at least 1.5x better".