refine log

This commit is contained in:
327135569 2021-03-29 17:47:27 +08:00
parent 51f22bbe85
commit 6c092f9a5b
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class SoAndDexCopyTask implements Runnable {
String copiedDexFileName = "classes" + (dexFileCount + 1) + ".dex";
File target = new File(unzipApkFilePath, copiedDexFileName);
FileUtils.copyFile(file, target);
System.out.println("copy " + file.getAbsolutePath() + " to " + target.getAbsolutePath());
System.out.println("Copy " + file.getAbsolutePath() + " to " + target.getAbsolutePath());
dexFileCount++;
copyed = true;
}