Add an LLM to your Android app with Arm's AI Chat library
Introduction
Create the Android project
Configure the AI Chat library dependency
Create the UI layouts and message adapter
Implement the main activity logic
Download a model and run the app
Next Steps
Add an LLM to your Android app with Arm's AI Chat library
Who is this for?
This is an introductory topic for developers who want to add a local, on-device LLM chat experience using Arm's AI Chat library, Kotlin, and Android Studio.
What will you learn?
Upon completion of this Learning Path, you will be able to:
- Create a simple Android chatbot app scaffold in Android Studio
- Load a mobile-friendly GGUF model on-device and run streamed chat inference
Prerequisites
Before starting, you will need the following:
- An Android development environment with Android Studio installed
- An Android phone for testing, in Developer Mode, with USB cable for connection
- Basic familiarity with Kotlin and Android app development
Summary
This summary was drafted with an approved AI-assisted workflow and reviewed by Arm contributors before publication. Human technical review remains part of the process so the final page reflects engineering rigor, accuracy, and Arm editorial standards.
GGUF model with Arm’s AI Chat library. First, you’ll configure the Android Studio project, add the Maven dependency, and create a chat UI. Then, you’ll connect the MainActivity class to load a mobile-friendly model and stream responses. Finally, you’ll download a GGUF model file on the device and run the app to verify on-device output.Frequently asked questions
These FAQs were drafted with an approved AI-assisted workflow and reviewed by Arm contributors before publication. Human technical review remains part of the process so the final page reflects engineering rigor, accuracy, and Arm editorial standards.
build.gradle.kts, not the project-level build.gradle.kts. Place the implementation for com.arm:ai-chat:0.1.0 in the dependencies block.settings.gradle.kts and confirm the top-level repositories include google() and mavenCentral(). With both present, you can resolve the AI Chat library from Maven Central.activity_main.xml in app/src/main/res/layout with the provided XML. The XML defines a status area, a message list, and a text input with a send button.google_gemma-3-4b-it-Q4_0.gguf, a Q4_0‑quantized Gemma 3 4B model that works well with Arm’s KleidiAI and benefits devices with SME2, SVE2, or Neon capabilities.GGUF file on the device, you should see the app load the model and stream chat responses into the message list. Check the status area during generation to confirm progress.