com.jayway.maven.plugins.android.configuration.NDKArchitectureToolchainMappings 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;
import com.jayway.maven.plugins.android.AndroidNdk;
/**
* @author
*/
public class NDKArchitectureToolchainMappings
{
String x86 = AndroidNdk.X86_TOOLCHAIN[1];
String armeabi = AndroidNdk.ARM_TOOLCHAIN[1];
String mips = AndroidNdk.ARM_TOOLCHAIN[1];
public String getArmeabi()
{
return armeabi;
}
public void setArmeabi( final String armeabi )
{
this.armeabi = armeabi;
}
public String getMips()
{
return mips;
}
public void setMips( final String mips )
{
this.mips = mips;
}
public String getX86()
{
return x86;
}
public void setX86( final String x86 )
{
this.x86 = x86;
}
}