Created
October 19, 2012 11:33
-
-
Save seungwon0/3917722 to your computer and use it in GitHub Desktop.
Barcode Scanner for Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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