com.jayway.maven.plugins.android.standalonemojos.EmulatorStartMojo Maven / Gradle / Ivy
package com.jayway.maven.plugins.android.standalonemojos;
import com.jayway.maven.plugins.android.AbstractEmulatorMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
/**
* EmulatorStartMojo can start the Android Emulator with a specified Android Virtual Device (avd).
*
* @author Manfred Moser
* @goal emulator-start
* @requiresProject false
*/
public class EmulatorStartMojo extends AbstractEmulatorMojo {
/**
* Start the Android Emulator.
*
* @throws MojoExecutionException
* @throws MojoFailureException
*/
public void execute() throws MojoExecutionException, MojoFailureException {
startAndroidEmulator();
}
}