2

要启动我正在做的应用程序:

<target name="run">
    <exec executable="adb">
        <arg value="shell"/>
        <arg value="am"/>
        <arg value="start"/>
        <arg value="-a"/>
        <arg value="android.intent.action.MAIN"/>
        <arg value="-n"/>
        <arg value="com.go.ring.demo1/.RootActivity"/>
    </exec>
  </target>

但是,我想关闭此应用程序。这样做的蚂蚁代码是什么?

4

1 回答 1

1

如何使用kill

am kill: kill all processes associated with <PACKAGE>

force-stop

am force-stop: force stop everything associated with <PACKAGE>

一般来说,你应该这样做:

adb shell

在 shell 中,不要am使用参数 - 这将显示所有 am 的选项和开关。

于 2012-10-30T17:19:45.423 回答