2013-09-04 15:39:51 -07:00
|
|
|
#!/system/bin/sh
|
|
|
|
#
|
2009-03-03 19:31:44 -08:00
|
|
|
# Script to start "am" on the device, which has a very rudimentary
|
|
|
|
# shell.
|
|
|
|
#
|
|
|
|
base=/system
|
|
|
|
export CLASSPATH=$base/framework/am.jar
|
2009-05-13 19:22:08 -07:00
|
|
|
exec app_process $base/bin com.android.commands.am.Am "$@"
|
2009-03-03 19:31:44 -08:00
|
|
|
|