com.jayway.maven.plugins.android.configuration.Zipalign 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 zipalign command. This class is only the definition of the parameters that are shadowed in
* {@link com.jayway.maven.plugins.android.standalonemojos.ZipalignMojo} and used there.
*
* @author Manfred Moser
*/
public class Zipalign
{
/**
* Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.ZipalignMojo#zipalignSkip}
*/
private Boolean skip;
/**
* Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.ZipalignMojo#zipalignVerbose}
*/
private Boolean verbose;
/**
* Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.ZipalignMojo#zipalignInputApk}
*/
private String inputApk;
/**
* Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.ZipalignMojo#zipalignOutputApk}
*/
private String outputApk;
private String classifier;
public Boolean isSkip()
{
return skip;
}
public Boolean isVerbose()
{
return verbose;
}
public String getInputApk()
{
return inputApk;
}
public String getOutputApk()
{
return outputApk;
}
public String getClassifier()
{
return classifier;
}
}