Files
android_development/tools/extract/build.gradle
Tor Norbye d28b49f318 Tool to extract annotations from the framework
Change-Id: I5cf8ddde2ecf502331ead19110a2e48fdf500e28
2016-07-06 09:33:19 -07:00

19 lines
392 B
Groovy

apply plugin:'application'
apply plugin: 'java'
mainClassName = "com.android.build.gradle.tasks.annotations.ExtractAnnotationsDriver"
applicationDefaultJvmArgs = ["-ea", "-Xms1048m", "-Xmx2048m"]
repositories {
jcenter()
}
sourceCompatibility = 1.8
dependencies {
compile 'com.android.tools.build:gradle:2.2.0-beta1'
testCompile 'junit:junit:4.11'
}
defaultTasks 'installApp'