All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ksoichiro.eclipse.aar.AarPluginExtension.groovy Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
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
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy