15 lines
378 B
Kotlin
15 lines
378 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
implementation(project(":jadx-plugins:jadx-dex-input"))
|
|
|
|
implementation("com.android.tools.smali:smali:3.0.9") {
|
|
exclude(group = "com.beust", module = "jcommander") // exclude old jcommander namespace
|
|
}
|
|
implementation("com.google.guava:guava:33.5.0-jre") // force the latest version for smali
|
|
}
|