I’m developing an android subsystem with multiple android applications, using Eclipse. When I make code changes I often need to reinstall the applications by clicking on each of the individual run configurations. This is time consuming. Is there a way of grouping the run configurations to automatically execute them with a single click?
I’m developing an android subsystem with multiple android applications, using Eclipse. When I make
Share
Turns out its not terribly hard to write a simple command plugin using Eclipse SDK to get and execute a list of launch configurations. I was able to do so starting with the “Hello World” plugin tutorial, which creates a command button on the tool bar, then added dependencies to ResourcesPlugin and DebugPlugin, and the following code to SimplerHandler.java. When the button is clicked this code executes all launch configurations and puts up a little window with info. With a little refinement, the plugin could be made to run a hard-coded set of configurations. I’m guessing its possible to get a handle to the launch favorites and just run those.