build.gradle 492 字节
Newer Older
1 2 3 4
plugins {
	id 'java-library'
}

S
Skylot 已提交
5
dependencies {
6
	api(project(':jadx-plugins:jadx-plugins-api'))
7

8
	implementation 'com.google.code.gson:gson:2.8.6'
S
Skylot 已提交
9
    implementation 'com.android.tools.build:aapt2-proto:4.2.1-7147631'
10

S
Skylot 已提交
11
	testImplementation 'org.apache.commons:commons-lang3:3.12.0'
12

13
	testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
14
	testRuntimeOnly(project(':jadx-plugins:jadx-smali-input'))
15
	testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
S
Skylot 已提交
16
}
S
Skylot 已提交
17 18 19 20

test {
	exclude '**/tmp/*'
}