Test: lunch sdk-eng && make sdk -j44 Test: lunch aosp_walleye-eng && cd system/core/adb && mm Test: adb install -r -f --force-agent --local-agent ~/example_apks/example.apk Test: adb install -r -f --no-streaming --force-agent --local-agent ~/example_apks/example.apk Change-Id: Ia1c2160f87ea584656f8fdd67e314a260d39d607
7 lines
211 B
Bash
Executable file
7 lines
211 B
Bash
Executable file
# Script to start "deployagent" on the device, which has a very rudimentary
|
|
# shell.
|
|
#
|
|
base=/data/local/tmp
|
|
export CLASSPATH=$base/deployagent.jar
|
|
exec app_process $base com.android.fastdeploy.DeployAgent "$@"
|
|
|