Scans for connected Android devices (via adb) and iOS simulators/physical devices (via xcrun simctl / ideviceinfo) and prints their status.
mix dala.devicesEach device is shown with a short ID you can pass to --device:
mix dala.deploy --device emulator-5554
mix dala.deploy --native --device 78354490Gracefully 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)