blob: 754744b025044864672aa51d53425fd285fc93a6 [file] [log] [blame]
apply plugin: 'application'
apply plugin: 'java'
mainClassName = "com.android.apigenerator.Main"
applicationDefaultJvmArgs = ["-ea", "-Xms1048m", "-Xmx2048m"]
repositories {
jcenter()
}
sourceCompatibility = 1.6
dependencies {
compile 'com.android.tools:common:24.2.3'
compile 'net.sf.kxml:kxml2:2.3.0'
compile 'org.ow2.asm:asm:4.0'
compile 'org.ow2.asm:asm-tree:4.0'
}
defaultTasks 'installApp'