Skip to content

Instantly share code, notes, and snippets.

View ericlmartinezo's full-sized avatar

Eric ericlmartinezo

  • Portland, OR
View GitHub Profile
@markusfisch
markusfisch / README.md
Last active January 21, 2023 15:15
Handy shell script that eases building and running Android apps from the command line with ant and adb

Handy Android shortcuts

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].

How to use

@AlexDenisov
AlexDenisov / calabash-ios-ci.rb
Created May 24, 2012 06:31
Ruby script for Calabash iOS CI-server
#!/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 ]
)