Files
jadx/jadx-core/build.gradle
T
2014-09-13 18:55:17 +04:00

17 lines
302 B
Groovy

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