# Android Device Info

> Read the full device profile — model, Android/API level, build, screen, battery, memory, and capability flags. Use before automation that depends on device capabilities, or to report what a device actually is.

- Skill: `samraddhashrivastavatech/android-device-info` (Agent Skill)
- Install (CLI): `npx skillmds@latest add samraddhashrivastavatech/android-device-info`
- Raw SKILL.md: https://api.skillmd.com/api/skills/samraddhashrivastavatech/android-device-info/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: SAMRADDHASHRIVASTAVATECH (https://skillmd.com/u/samraddhashrivastavatech)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/samraddhashrivastavatech/android-device-info

---


# Android device information

Produce a trustworthy profile of a connected device so downstream automation
picks the right coordinates, input mode, and vision fallback.

## When to use

- Before driving UI / input / files on an unfamiliar device.
- When the user asks "what device is connected?" or about its specs.
- To choose tap vs. swipe behaviour, DPI, orientation, and resolution.

## Tools used

- `device_info` — model, manufacturer, Android/API level, build, SDK features.
- `status` — connection state, serial, online state.
- `screen_info` — resolution, density, orientation, display modes.
- `verify` — confirms the device answers a harmless probe (readiness).

## Procedure

1. `device_info` to gather identity + build + capability fields.
2. `screen_info` for the display surface the UI skills will act on.
3. `status` to record transport health alongside the profile.
4. Return a single structured profile with fields used by `android-ui` /
   `android-input` (resolution, density, orientation, API level).

## Evidence

Profile fields are the evidence: serial, model, API level, resolution, density,
screen state. No profile → do not proceed to coordinate-based work.

## Related skills

`android-discovery` · `android-adb` · `android-screen` · `android-control`
