Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
  • Loading branch information
查郁 committed Mar 21, 2018
1 parent ad7038b commit 2dbc9de
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,14 @@ private File createAP(File apkFile,

}

getLogger().error(new File(proguardOut
,"j2cmap.zip").getAbsolutePath() +"is exist "+new File(proguardOut
,"j2cmap.zip").exists());
if (null != proguardOut &&
proguardOut.exists() &&
(new File(proguardOut, "mapping.txt").exists() ||
new File(proguardOut, "full-mapping.txt").exists())) {
new File(proguardOut, "full-mapping.txt").exists()||new File(proguardOut
,"j2cmap.zip").exists())) {
File usageFile = new File(proguardOut, "usage.txt");
File mappingFile = new File(proguardOut, "mapping.txt");
File dexCocoMap = new File(proguardOut,"dexcocomap.zip");
Expand Down

0 comments on commit 2dbc9de

Please sign in to comment.