MCPcopy Create free account
hub / github.com/WrBug/dumpDex / find

Method find

app/src/main/java/com/wrbug/dumpdex/PackerInfo.java:86–97  ·  view source on GitHub ↗
(final XC_LoadPackage.LoadPackageParam lpparam)

Source from the content-addressed store, hash-verified

84 }
85
86 public static Type find(final XC_LoadPackage.LoadPackageParam lpparam) {
87 for (String s : sPackageName) {
88 Class clazz = XposedHelpers.findClassIfExists(s, lpparam.classLoader);
89 if (clazz != null) {
90 log("find class:" + s);
91 Type type = getType(s);
92 log("find packerType :" + type.getName());
93 return type;
94 }
95 }
96 return null;
97 }
98
99
100 private static Type getType(String packageName) {

Callers 1

handleLoadPackageMethod · 0.95

Calls 3

logMethod · 0.95
getTypeMethod · 0.95
getNameMethod · 0.95

Tested by

no test coverage detected