14 lines
315 B
Groovy
14 lines
315 B
Groovy
plugins {
|
|
id 'jadx-library'
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-plugins:jadx-plugins-api"))
|
|
|
|
implementation(project(":jadx-plugins:jadx-dex-input"))
|
|
implementation('com.jakewharton.android.repackaged:dalvik-dx:11.0.0_r3')
|
|
implementation('com.android.tools:r8:3.3.75')
|
|
|
|
implementation 'org.ow2.asm:asm:9.4'
|
|
}
|