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"

// ✅ Read-only collection types (List/Set/Map are read-only, NOT immutable:
// a MutableList held elsewhere can still change behind this reference)
val items: List<Item> = listOf(item1, item2)
Installs
3
GitHub Stars
12
First Seen
Aug 23, 2026
android-patterns — talissonvitorino/kmp-ios-skills