21 lines
480 B
Kotlin
21 lines
480 B
Kotlin
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
|
|
}
|
|
}
|