Files
jadx/jadx-core/build.gradle
T
2020-07-11 12:51:38 +01:00

28 lines
639 B
Groovy

plugins {
id 'java-library'
}
dependencies {
runtimeOnly files('clsp-data/android-29-clst.jar')
runtimeOnly files('clsp-data/android-29-res.jar')
api(project(':jadx-plugins:jadx-plugins-api'))
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.smali:baksmali:2.4.0'
implementation('org.smali:smali:2.4.0') {
exclude group: 'com.google.guava'
}
implementation 'com.google.guava:guava:29.0-jre'
testImplementation 'org.apache.commons:commons-lang3:3.10'
testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
}
test {
exclude '**/tmp/*'
}