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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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.) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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; |