我想知道我怎样才能将.apk文件添加到我的pom.xml中,以便从apk文件安装应用程序,并在第二步构建项目中进行测试,午餐模拟器,安装apk将进行测试等,等等现在第一个apk是手动安装但我需要安装apk whit maven然后转到第二步。有没有其他人遇到同样的问题?
答案 0 :(得分:2)
好的,我自己解决了,这是pom.xml的一部分
<executions>
<execution>
<id>startEmulator</id>
<phase>initialize</phase>
<goals>
<goal>emulator-start</goal>
</goals>
</execution>
<execution>
<id>install-client</id>
<phase>initialize</phase>
<configuration>
<file>my.apk</file>
</configuration>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>