notifications
Installation
SKILL.md
Android Notifications
Rule 1: Always create channels before posting (Android 8+)
// ✅ Channel setup — do this in Application.onCreate()
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
createNotificationChannels()
}