Files
jadx/jadx-plugins/jadx-smali-input/build.gradle.kts
T
2025-09-21 19:55:11 +01:00

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
}