Reputation: 192
After decompile APK,I want to find the method com.welove520.welove.l.e.a(String, String, Map)
.
But the match package path does not have Class e
.
smali
have the same phenomenon. But java -jar apktool.jar b **
still normal.
How to solve the problem?
What would causes this situation?
Upvotes: 0
Views: 1583
Reputation: 192
I have solved the problem.
The decompiled apk has 2 dex
:classes.dex
classes2.dex
, the missing classes are in the second classes2.dex
.
Upvotes: 1