我想知道是否有办法启动自动使用mvn install android:deploy
部署的应用程序。如果这在某种程度上可能会加速发展。
答案 0 :(得分:15)
答案 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