android-patterns

Installation
SKILL.md

Android Development Patterns

Modern Android patterns with Kotlin, coroutines, and functional programming.

Kotlin Idioms

Immutability

// ✅ Prefer val over var
val name: String = "John"

// ✅ Immutable collections
val items: List<Item> = listOf(item1, item2)

// ✅ Data class with copy
data class User(val id: String, val name: String)
val updatedUser = user.copy(name = "Jane")
Installs
16
GitHub Stars
53
First Seen
Feb 20, 2026
android-patterns — ahmed3elshaer/everything-claude-code-mobile