fundamentals
Installation
SKILL.md
Kotlin Fundamentals Skill
Quick Start
// Variables
val immutable = "constant"
var mutable = "variable"
// Functions
fun greet(name: String): String = "Hello, $name"
// Classes
data class User(val id: Int, val name: String)
// Null safety
val user: User? = null
user?.name // safe call
user?.name ?: "Unknown" // elvis operator
Related skills
More from pluginagentmarketplace/custom-plugin-android
networking
Retrofit, OkHttp, REST APIs, JSON serialization, network security.
13ui
XML layouts, ConstraintLayout, Jetpack Compose, Material Design 3.
5production
Unit testing, performance optimization, security implementation, Play Store deployment.
5platform
Android core components lifecycle, Activities, Fragments, Services, Intent system.
4data
Room ORM, SQLite, SharedPreferences, DataStore, encryption.
4architecture
MVVM pattern, Clean Architecture, Repository pattern, dependency injection, SOLID principles.
4