Files
jadx/jadx-core/build.gradle
T
2014-11-03 15:22:49 +03:00

18 lines
347 B
Groovy

ext.jadxClasspath = 'clsp-data/android-4.3.jar'
dependencies {
runtime files(jadxClasspath)
compile files('lib/dx-1.10.jar')
compile 'org.ow2.asm:asm:5.0.3'
compile 'com.intellij:annotations:12.0'
testCompile 'org.smali:smali:2.0.3'
}
task packTests(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
}