com.github.ksoichiro.eclipse.aar.AarPluginExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-eclipse-aar-plugin Show documentation
Show all versions of gradle-eclipse-aar-plugin Show documentation
Gradle plugin to use Android AAR libraries on Eclipse
package com.github.ksoichiro.eclipse.aar
import org.gradle.api.Project
class AarPluginExtension {
Project project
String androidTarget = 'android-21'
String aarDependenciesDir = 'aarDependencies'
String jarDependenciesDir
String projectNamePrefix = ''
boolean cleanLibsDirectoryEnabled = false
boolean andmore = false
String projectName
List targetConfigurations = ['compile', 'debugCompile']
AarPluginExtension(Project project) {
this.project = project
}
}