# `mix dala.devices`
[🔗](https://github.com/manhvu/dala_dev/blob/main/lib/mix/tasks/dala.devices.ex#L1)

Scans for connected Android devices (via adb) and iOS simulators/physical
devices (via xcrun simctl / ideviceinfo) and prints their status.

    mix dala.devices

Each device is shown with a short **ID** you can pass to `--device`:

    mix dala.deploy --device emulator-5554
    mix dala.deploy --native --device 78354490

Gracefully skips platforms whose tools are not installed (adb / xcrun).

## Under the hood

    # Android
    adb devices -l
    # → parses serial numbers, device/emulator state, and manufacturer/model

    # iOS (macOS only)
    xcrun simctl list devices booted --json
    ideviceinfo -k UniqueDeviceID   (if libimobiledevice is installed)

---

*Consult [api-reference.md](api-reference.md) for complete listing*
