Example Usage
# Check Android Architecture
$ adb shell getprop | grep abi
# Try to use this command to get simple output :)
$ adb shell getprop ro.product.cpu.abi

# List all application already installed
$ adb shell pm list packages -f | grep -i 'testing'

# List All Processes on Android
$ adb shell ps
$ adb shell ps -A

# Stop Process on Android
$ adb shell kill [PID]

# Stop Package Process on Android
$ adb shell am force-stop <packagename>

# Tracing log on android
$ adb logcat | grep com.app.testing

# Install application to device
$ adb install app.testing.apk

# Get the full path of an application
$ adb shell pm path com.example.someapp

# Upload File to development machine
$ adb push frida-server /data/local/tmp/

# Download the apk to development machine
$ adb pull /data/app/com.example.someapp-2.apk

# Dump activity on app
$ adb shell dumpsys activity top | grep ACTIVITY

# Create new file in adb shell
$ cat > filename.xml
You can add lines to a text files using:
$ cat >> filename.xml
Both commands can be terminated using ctrl-D.

# Dump Memory
$ adb shell dumpsys meminfo com.package.name

# Show all device configs
$ adb shell settings list global

# Disable verification adb
$ adb shel