17 lines
302 B
Groovy
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
|
|
}
|
|
|