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