mahmud83 / maven-android-plugin

Automatically exported from code.google.com/p/maven-android-plugin
0 stars 0 forks source link

Goals on multiple devices #439

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi everybody, 

I am working with your plugin, and it is very very great. Thanks for your work. 

I have just forked the project on github, and make a small contribution : 
https://github.com/Gillespie59/maven-android-plugin/commit/d59303abdc6f8d4e5b6d5
55c68d96227653f4fd6

This commit add the possibility to specify a list of devices (the serial of a 
device, "usb" or "emulator"). If I am right, It was only possible to define one 
device, all the usb-connected devices, or all the emulators. But it was not 
possible to mix all of them : for example 1 emulator and 1 real device. 

With my commit, you can list all the devices in your pom.xml

<devices>
  <device>emulator-4444</device>
  <device>serial of an usb-connected device</device>
  <device>usb</device>
  <device>emulator</device>
</devices>

It is also possible to define external Android Virtual Machines, thanks to an 
IP address. we will connect all these addresses thanks to an adb connect. 

<ips>
  <ip>127.0.0.1:4444</ip>
</ips>

What do you think of this contribution ? Do you see something missing or wrong 
? 

I would like to send a Pull Request to the original project, so any feedbacks 
are welcome.

Manu

Original issue reported on code.google.com by demey.em...@gmail.com on 7 Jan 2014 at 1:27

GoogleCodeExporter commented 9 years ago
We are no longer using the issue tracking system on Google Code. Please refile 
this issue on https://github.com/jayway/maven-android-plugin/issues if you 
still have this problem with the latest release of the Android Maven Plugin

Original comment by mosa...@gmail.com on 19 May 2014 at 4:20