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

S
Skylot 已提交
5
dependencies {
6 7
	runtimeOnly files('clsp-data/android-29-clst.jar')
	runtimeOnly files('clsp-data/android-29-res.jar')
8

9
	api(project(':jadx-plugins:jadx-plugins-api'))
10

11
	implementation 'com.google.code.gson:gson:2.8.6'
12

13 14
	implementation 'org.smali:baksmali:2.4.0'
	implementation('org.smali:smali:2.4.0') {
S
Skylot 已提交
15 16
		exclude group: 'com.google.guava'
	}
17
	implementation 'com.google.guava:guava:29.0-jre'
18

19
	testImplementation 'org.apache.commons:commons-lang3:3.10'
20

21 22
	testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
	testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
S
Skylot 已提交
23
}
S
Skylot 已提交
24 25 26 27

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