diff options
Diffstat (limited to 'adb/fastdeploy/deployagent/deployagent.sh')
-rwxr-xr-x | adb/fastdeploy/deployagent/deployagent.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/adb/fastdeploy/deployagent/deployagent.sh b/adb/fastdeploy/deployagent/deployagent.sh new file mode 100755 index 000000000..4f17eb701 --- /dev/null +++ b/adb/fastdeploy/deployagent/deployagent.sh @@ -0,0 +1,7 @@ +# 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 "$@" + |