We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.euler.patch.diff 包下DexDiffer类。
public DiffInfo diff(File newFile, File oldFile) throws IOException { DexBackedDexFile newDexFile = DexFileFactory.loadDexFile(newFile, 19, true); DexBackedDexFile oldDexFile = DexFileFactory.loadDexFile(oldFile, 19, true); DiffInfo info = DiffInfo.getInstance(); //此行代码是否应该放入第一个for循环中,每次遍历都重置一下状态 boolean contains = false; for (DexBackedClassDef newClazz : newDexFile.getClasses()) { Set oldclasses = oldDexFile .getClasses(); for (DexBackedClassDef oldClazz : oldclasses) { if (newClazz.equals(oldClazz)) { compareField(newClazz, oldClazz, info); compareMethod(newClazz, oldClazz, info); contains = true; break; } } //1、场景是现在类有修改、并且有新增类 if (contains) continue; //即使有新增类这里也不会被执行到。 info.addAddedClasses(newClazz); } return info; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
com.euler.patch.diff 包下DexDiffer类。
The text was updated successfully, but these errors were encountered: