We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4e3dd commit 6593bccCopy full SHA for 6593bcc
app/build.gradle
@@ -135,7 +135,8 @@ dependencies {
135
//implementation 'xpp3:xpp3:1.1.4c'
136
implementation project(':xpp')
137
138
- /*
+ def dex2Jar = false;
139
+ if(dex2Jar){
140
implementation files('libs/d2j-jasmin.jar')
141
implementation files('libs/d2j-smali.jar')
142
implementation project(':d2j-j6')
@@ -155,7 +156,7 @@ dependencies {
155
156
}
157
//ASM 是一个 Java 字节码操纵框架。它可以直接以二进制形式动态地生成 stub 类或其他代理类,或者在装载时动态地修改类。ASM 提供类似于 BCEL 和 SERP 之类的工具包的功能,但是被设计得更小巧、更快速,这使它适用于实时代码插装。
158
implementation 'org.ow2.asm:asm-debug-all:5.0.3'
- */
159
+ }
160
161
testImplementation 'junit:junit:4.13.2'
162
androidTestImplementation 'androidx.test:runner:1.4.0'
0 commit comments