Skip to content

Instantly share code, notes, and snippets.

@seungwon0
Created October 19, 2012 11:33
Show Gist options
  • Save seungwon0/3917722 to your computer and use it in GitHub Desktop.
Save seungwon0/3917722 to your computer and use it in GitHub Desktop.
Barcode Scanner for Android
use Android;
my $android = Android->new();
my $barcode = $android->scanBarcode();
my $result = $barcode->{result}{extras}{SCAN_RESULT};
print $result, "\n";
$android->makeToast($result);
$android->setClipboard($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment