Android-Build
view release on metacpan or search on metacpan
lib/Android/Build.pm view on Meta::CPAN
./SampleApp/perl/makeWithPerl.pl
to reflect your local environment, then start an emulator and run:
perl ./SampleApp/perl/makeWithPerl.pl
to compile the sample app and load it into the running emulator.
=head2 Signing key
If you do not already have a signing key, you can create one with the supplied
script:
./SampleApp/perl/generateAKey.pl
=head1 Description
Lint, compile, install, run an Android app using the command line tools minus Ant and Gradle thus freeing development effort from the strictures imposed by Android Studio.
Version '20201114'.
The following sections describe the methods in each functional area of this
module. For an alphabetic listing of all methods by name see L<Index|/Index>.
=head1 Index
=head1 Installation
This module is written in 100% Pure Perl and, thus, it is easy to read,
comprehend, use, modify and install via B<cpan>:
sudo cpan install Android::Build
=head1 Author
L<philiprbrenan@gmail.com|mailto:philiprbrenan@gmail.com>
L<http://www.appaapps.com|http://www.appaapps.com>
=head1 Copyright
Copyright (c) 2016-2019 Philip R Brenan.
This module is free software. It may be used, redistributed and/or modified
under the same terms as Perl itself.
=cut
# Tests and documentation
sub test
{my $p = __PACKAGE__;
binmode($_, ":utf8") for *STDOUT, *STDERR;
return if eval "eof(${p}::DATA)";
my $s = eval "join('', <${p}::DATA>)";
$@ and die $@;
eval $s;
$@ and die $@;
1
}
test unless caller;
1;
# podDocumentation
__DATA__
use Test::More tests => 1;
ok 1;
( run in 2.699 seconds using v1.01-cache-2.11-cpan-cdf2f3d4e48 )