build.gradle 242 字节
Newer Older
1 2 3 4 5 6 7 8
plugins {
	id 'java-library'
}

dependencies {
	api(project(":jadx-plugins:jadx-plugins-api"))

	implementation(project(":jadx-plugins:jadx-dex-input"))
9
	implementation 'com.android.tools:r8:2.1.75'
S
Skylot 已提交
10 11

	implementation 'org.ow2.asm:asm:8.0.1'
12
}