14 lines
296 B
Kotlin
14 lines
296 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
implementation(project(":jadx-plugins:jadx-dex-input"))
|
|
implementation("com.jakewharton.android.repackaged:dalvik-dx:16.0.1")
|
|
implementation("com.android.tools:r8:9.1.31")
|
|
|
|
implementation("org.ow2.asm:asm:9.9.1")
|
|
}
|