blob: 76ec214cb446f0cb9424a2949885d2c3aa1b96de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/system/bin/sh
# set to top-app process group
settaskprofile $$ SCHED_SP_TOP_APP >/dev/null 2>&1 || true
if [ "$1" != "instrument" ] ; then
cmd activity "$@"
else
base=/system
export CLASSPATH=$base/framework/am.jar
exec app_process $base/bin com.android.commands.am.Am "$@"
fi
|