android-kotlin-development▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Native Android development with Kotlin, MVVM architecture, Jetpack Compose, and modern libraries.
- ›Covers MVVM pattern with Jetpack ViewModels, StateFlow for reactive state management, and Hilt for dependency injection
- ›Includes Jetpack Compose for declarative UI, Retrofit for API integration, and Room for local SQLite persistence
- ›Provides reference implementations for models, API services, ViewModels, and Compose UI components
- ›Emphasizes coroutines for async operations, proper life
Android Kotlin Development
Table of Contents
Overview
Build robust native Android applications using Kotlin with modern architecture patterns, Jetpack libraries, and Compose for declarative UI.
When to Use
- Creating native Android applications with best practices
- Using Kotlin for type-safe development
- Implementing MVVM architecture with Jetpack
- Building modern UIs with Jetpack Compose
- Integrating with Android platform APIs
Quick Start
Minimal working example:
// Models
data class User(
val id: String,
val name: String,
val email: String,
val avatarUrl: String? = null
)
data class Item(
val id: String,
val title: String,
val description: String,
val imageUrl: String? = null,
val price: Double
)
// API Service with Retrofit
interface ApiService {
@GET("/users/{id}")
suspend fun getUser(@Path("id") userId: String): User
@PUT("/users/{id}")
suspend fun updateUser(
@Path("id") userId: String,
@Body user: User
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Models & API Service | Models & API Service |
| MVVM ViewModels with Jetpack | MVVM ViewModels with Jetpack |
| Jetpack Compose UI | Jetpack Compose UI |
Best Practices
✅ DO
- Use Kotlin for all new Android code
- Implement MVVM with Jetpack libraries
- Use Jetpack Compose for UI development
- Leverage coroutines for async operations
- Use Room for local data persistence
- Implement proper error handling
- Use Hilt for dependency injection
- Use StateFlow for reactive state
- Test on multiple device types
- Follow Android design guidelines
❌ DON'T
- Store tokens in SharedPreferences
- Make network calls on main thread
- Ignore lifecycle management
- Skip null safety checks
- Hardcode strings and resources
- Ignore configuration changes
- Store passwords in code
- Deploy without device testing
- Use deprecated APIs
- Accumulate memory leaks
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.8★★★★★57 reviews- ★★★★★Mei Chawla· Dec 24, 2024
Registry listing for android-kotlin-development matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Aditi Diallo· Dec 20, 2024
Solid pick for teams standardizing on skills: android-kotlin-development is focused, and the summary matches what you get after install.
- ★★★★★Pratham Ware· Dec 16, 2024
Keeps context tight: android-kotlin-development is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Naina Flores· Dec 8, 2024
android-kotlin-development fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Jin Johnson· Nov 27, 2024
android-kotlin-development has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Aditi Jain· Nov 15, 2024
Useful defaults in android-kotlin-development — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Omar Park· Nov 11, 2024
We added android-kotlin-development from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Aditi Kapoor· Oct 18, 2024
Solid pick for teams standardizing on skills: android-kotlin-development is focused, and the summary matches what you get after install.
- ★★★★★Jin Smith· Oct 6, 2024
I recommend android-kotlin-development for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Charlotte Iyer· Oct 2, 2024
android-kotlin-development fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 57