Android-ADB
view release on metacpan or search on metacpan
lib/Android/ADB/Device.pm view on Meta::CPAN
=encoding utf-8
=head1 NAME
Android::ADB::Device - information about an Android device
=head1 SYNOPSIS
use Android::ADB;
my @devices = $adb->devices;
say $devices[0]->serial;
say $devices[0]->state; # e.g. offline, bootloader, sideload, or device
# The available attributes depend on your device
say $devices[0]->usb; # e.g. 2-1
say $devices[0]->product; # e.g. angler
say $devices[0]->model; # e.g. MI_MAX
say $devices[0]->device; # e.g. angler
=head1 DESCRIPTION
Information about an Android device in form of a blessed hash with a
few accessors. See SYNPOSIS for a list of accessors.
=head1 SEE ALSO
L<Android::ADB>
( run in 0.677 second using v1.01-cache-2.11-cpan-483215c6ad5 )