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()
    }
Installs
9
GitHub Stars
13
First Seen
Apr 19, 2026
notifications — piyushverma0/android-agent-skills