13 lines
208 B
Kotlin
13 lines
208 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
// show bytecode disassemble
|
|
implementation("io.github.skylot:raung-disasm:0.1.1")
|
|
|
|
testImplementation(project(":jadx-core"))
|
|
}
|