This little script eases building, running, testing and analyzing Android apps with [ant][2] and [adb][1].
You may also see it as interactive dictionary of useful [adb commands][1].
| #!/usr/bin/ruby | |
| require "getoptlong" | |
| getoptlong = GetoptLong.new( | |
| [ '--target', '-t', GetoptLong::REQUIRED_ARGUMENT ], | |
| [ '--log-file', '-l', GetoptLong::REQUIRED_ARGUMENT ], | |
| [ '--source-root', '-r', GetoptLong::REQUIRED_ARGUMENT ] | |
| ) |