mirror of
https://github.com/skylot/jadx.git
synced 2024-11-27 22:50:54 +00:00
21 lines
474 B
Groovy
21 lines
474 B
Groovy
plugins {
|
|
id 'jadx-library'
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
// TODO: finish own smali printer
|
|
implementation 'org.smali:baksmali:2.5.2'
|
|
// force latest version for smali
|
|
constraints {
|
|
implementation 'com.google.guava:guava:30.1.1-jre'
|
|
implementation 'com.beust:jcommander:1.81'
|
|
}
|
|
|
|
// compile smali files in tests
|
|
testImplementation('org.smali:smali:2.5.2') {
|
|
exclude(group: 'junit', module: 'junit') // ignore junit 4 transitive dependency
|
|
}
|
|
}
|