Android app development is the practice of building lifecycle-driven software that runs on the Android platform, primarily using Kotlin with the Android SDK + AndroidX (Jetpack). Jetpack Compose is the recommended modern UI toolkit, backed by a declarative state model and a rich ecosystem spanning navigation, animations, adaptive layouts, and on-device AI. Production complexity arises from coordinating UI state with asynchronous work (network, storage, background execution) while respecting component lifecycles and modern platform restrictions. A useful mental model: the system owns your process and components, and your app reacts to callbacks, intents, and state flows rather than controlling a linear main loop.
What This Cheat Sheet Covers
This topic spans 18 focused tables and 192 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
Table 1: Tooling and Core Setup
| Tool | Example | Description |
|---|---|---|
Tools > SDK Manager | Primary IDE for Android development (code, build, run, debug, profile). | |
./gradlew tasks | Project-pinned Gradle launcher (gradlew / gradlew.bat) that downloads and uses the declared Gradle version. | |
plugins { id("com.android.application") } | Gradle plugin that adds Android build tasks β APK/AAB packaging, resources, and manifest merging. | |
libs.versions.toml in gradle/ | β’ Centralized dependency and version declarations in TOML β’ reduces duplication across modules. | |
class MainActivity : ComponentActivity() | β’ Kotlin-first language for Android β’ official recommended language since 2019. |