16 lines
322 B
Kotlin
16 lines
322 B
Kotlin
plugins {
|
|
id("jadx-java")
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
implementation(project(":jadx-commons:jadx-app-commons"))
|
|
|
|
implementation("com.google.code.gson:gson:2.14.0")
|
|
implementation("commons-io:commons-io:2.22.0")
|
|
|
|
testImplementation("com.squareup.okhttp3:mockwebserver3:5.4.0")
|
|
}
|