.hadk.env
export MER_ROOT="$HOME/mer"
export ANDROID_ROOT="$MER_ROOT/android/droid"
export VENDOR="OnePlus"
export DEVICE="onyx"
export PORT_ARCH="armv7hl"
| /*bin/mkdir /tmp/rip 2> /dev/null | |
| javac -d /tmp/rip $0 | |
| java -cp /tmp/rip Rip "$@" | |
| exit | |
| */ | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.*; | |
| import java.util.regex.Matcher; |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
| Implementation notes regarding ADB. | |
| I. General Overview: | |
| The Android Debug Bridge (ADB) is used to: | |
| - keep track of all Android devices and emulators instances | |
| connected to or running on a given host developer machine | |
| - implement various control commands (e.g. "adb shell", "adb pull", etc.) |