com.jayway.maven.plugins.android.configuration.Run Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
package com.jayway.maven.plugins.android.configuration;
/**
* Configuration for the Run goal.
*
* @author Manfred Moser
* @see com.jayway.maven.plugins.android.standalonemojos.RunMojo
*/
public class Run {
/**
* If true, the device or emulator will pause execution of the process at
* startup to wait for a debugger to connect.
*
* @parameter expression="${android.run.debug}" default-value="false"
*/
protected boolean debug;
public boolean isDebug() {
return debug;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy