12 lines
209 B
Groovy
12 lines
209 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-plugins:jadx-plugins-api"))
|
|
|
|
// show bytecode disassemble
|
|
implementation 'org.ow2.asm:asm:9.2'
|
|
implementation 'org.ow2.asm:asm-util:9.2'
|
|
}
|