adbfrontend

Description

A front end for adb in pharo.

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
MIT
Stars
1
Created
Oct. 6, 2014
Updated
Sept. 24, 2015

README excerpt

ADB Frontend
===========

A front end for adb in pharo.

Warning: All the commands are not implemented, you may want to add option according to your needs.

Install:

~~~
Metacello new
    baseline: 'ADB';
    repository: 'github://juliendelplanque/adbfrontend/repository';
    load.
~~~

Add ADB as a dependency of your project by adding the following to your metacello config:

~~~
spec baseline: 'ADB' with: [
    spec repository: 'github://juliendelplanque/adbfrontend/repository' ].
~~~

Exemple:

~~~
    adb -s emulator-5554 emu kill
~~~

is equivalent to:

~~~
    Adb new
        specifyDevice: 5554;
        emu: 'kill';
        executeCommand.
~~~
← Back to results