├── .gitignore ├── Android.pm ├── COMPILING ├── README ├── bugs ├── autodie.pl ├── feature-5_10.pl ├── file_spec.pl ├── hires │ ├── hires.pl │ └── hires_on_horizontal_progress.pl ├── lastlocation_horizontal.pl └── utf8.pl ├── examples ├── del_messages.pl ├── gps_send_message.pl ├── plack.pl └── sms_search.pl ├── modules └── Try │ └── Tiny.pm ├── scriptlets ├── 01_hello_world.pl ├── 02_android_object.pl ├── MyTools.pl ├── airplane.pl ├── alert_dialog.pl ├── dialog_dismiss.pl ├── get.pl ├── getinput.pl ├── gps.pl ├── horizontal_progress.pl ├── info.pl ├── location.pl ├── ringer_silent_mode.pl ├── sensing_location.pl ├── speak.pl ├── spinning_progress.pl └── vibrate.pl └── test.pl /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Android.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/Android.pm -------------------------------------------------------------------------------- /COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/COMPILING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/README -------------------------------------------------------------------------------- /bugs/autodie.pl: -------------------------------------------------------------------------------- 1 | use autodie; 2 | -------------------------------------------------------------------------------- /bugs/feature-5_10.pl: -------------------------------------------------------------------------------- 1 | # checks that feature.pm is unavailable 2 | use 5.010; 3 | say "hello Android"; 4 | 5 | -------------------------------------------------------------------------------- /bugs/file_spec.pl: -------------------------------------------------------------------------------- 1 | use File::Spec; 2 | 3 | -------------------------------------------------------------------------------- /bugs/hires/hires.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/bugs/hires/hires.pl -------------------------------------------------------------------------------- /bugs/hires/hires_on_horizontal_progress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/bugs/hires/hires_on_horizontal_progress.pl -------------------------------------------------------------------------------- /bugs/lastlocation_horizontal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/bugs/lastlocation_horizontal.pl -------------------------------------------------------------------------------- /bugs/utf8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/bugs/utf8.pl -------------------------------------------------------------------------------- /examples/del_messages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/examples/del_messages.pl -------------------------------------------------------------------------------- /examples/gps_send_message.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/examples/gps_send_message.pl -------------------------------------------------------------------------------- /examples/plack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/examples/plack.pl -------------------------------------------------------------------------------- /examples/sms_search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/examples/sms_search.pl -------------------------------------------------------------------------------- /modules/Try/Tiny.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/modules/Try/Tiny.pm -------------------------------------------------------------------------------- /scriptlets/01_hello_world.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/01_hello_world.pl -------------------------------------------------------------------------------- /scriptlets/02_android_object.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/02_android_object.pl -------------------------------------------------------------------------------- /scriptlets/MyTools.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/MyTools.pl -------------------------------------------------------------------------------- /scriptlets/airplane.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/airplane.pl -------------------------------------------------------------------------------- /scriptlets/alert_dialog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/alert_dialog.pl -------------------------------------------------------------------------------- /scriptlets/dialog_dismiss.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/dialog_dismiss.pl -------------------------------------------------------------------------------- /scriptlets/get.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/get.pl -------------------------------------------------------------------------------- /scriptlets/getinput.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/getinput.pl -------------------------------------------------------------------------------- /scriptlets/gps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/gps.pl -------------------------------------------------------------------------------- /scriptlets/horizontal_progress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/horizontal_progress.pl -------------------------------------------------------------------------------- /scriptlets/info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/info.pl -------------------------------------------------------------------------------- /scriptlets/location.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/location.pl -------------------------------------------------------------------------------- /scriptlets/ringer_silent_mode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/ringer_silent_mode.pl -------------------------------------------------------------------------------- /scriptlets/sensing_location.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/sensing_location.pl -------------------------------------------------------------------------------- /scriptlets/speak.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/speak.pl -------------------------------------------------------------------------------- /scriptlets/spinning_progress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/spinning_progress.pl -------------------------------------------------------------------------------- /scriptlets/vibrate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/scriptlets/vibrate.pl -------------------------------------------------------------------------------- /test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsawyerx/perl-android-scripts/HEAD/test.pl --------------------------------------------------------------------------------