Android Maven插件 - 如何在部署后自动启动应用程序

时间:2011-10-06 10:47:29

标签: android maven android-maven-plugin

我想知道是否有办法启动自动使用mvn install android:deploy部署的应用程序。如果这在某种程度上可能会加速发展。

2 个答案:

答案 0 :(得分:15)

maven-android-plugin版本3.0.0开始,您可以使用:

mvn install android:deploy android:run

并且完美无缺。

插件的更改日志here

答案 1 :(得分:3)

这里的帖子:http://www.hrupin.com/2011/06/21/how-to-run-android-application-then-you-use-maven-in-your-project

首先,您需要在POM中添加插件

<plugin>
    <artifactId>exec-maven-plugin</artifactId>
    <groupId>org.codehaus.mojo</groupId>
    <configuration>
            <executable>${basedir}/scripts/run_app.sh</executable>
    </configuration>
</plugin>

使用下一个内容在$ {basedir} / scripts / dir中添加脚本:

adb shell am start -a android.intent.action.MAIN -n your.app.package/.YourMainActivity

构建和运行应用程序的命令

mvn clean install android:deploy; mvn exec:exec