# Platform Android

> Platform functions available on Android. Use invoke_platform to call native Android capabilities like local notifications.

- Skill: `ionclaw-org/platform-android` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ionclaw-org/platform-android`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ionclaw-org/platform-android/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ionclaw-org (https://skillmd.com/u/ionclaw-org)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/ionclaw-org/platform-android

---


# Platform: Android

You are running on an **Android** device.

## Tool: `invoke_platform`

Call platform-specific functions using:

```
invoke_platform(function="function.name", params={"key": "value"})
```

## Available Functions

### local-notification.send

Send a local notification to the user.

```
invoke_platform(function="local-notification.send", params={
    "title": "Reminder",
    "message": "Your task is complete."
})
```

| Parameter | Type   | Required | Description              |
|-----------|--------|----------|--------------------------|
| title     | string | Yes      | Notification title       |
| message   | string | Yes      | Notification body text   |

