diff --git a/adapter/ohos/CompressVerify.java b/adapter/ohos/CompressVerify.java index 3e897b554aeda2175d6ad1bb6a031959ecc51d98..7a7e7fb3d1011435547bfa194c148a225bdff61e 100644 --- a/adapter/ohos/CompressVerify.java +++ b/adapter/ohos/CompressVerify.java @@ -357,6 +357,7 @@ public class CompressVerify { * @return isVerifyValidInMultiAppMode if verify valid in multiApp mode. */ private static boolean isVerifyValidInMultiAppMode(Utility utility) { + LOG.error("isVerifyValidInMultiAppMode called !!!!!"); if (utility.getAppList().isEmpty() && utility.getHapList().isEmpty()) { LOG.error("CompressVerify::isVerifyValidInMultiAppMode input app-list and hap-list are null!"); return false; diff --git a/adapter/ohos/Compressor.java b/adapter/ohos/Compressor.java index 0c20fdfe75121c8cd2c45de575f721b0668440a9..c07c9df43690a3d4d1191e2e5a8c55697233040a 100644 --- a/adapter/ohos/Compressor.java +++ b/adapter/ohos/Compressor.java @@ -521,6 +521,7 @@ public class Compressor { String tempPath = appOutputFile.getParentFile().getParent() + File.separator + TEMP_HAP_DIR; String tempSelectedHapPath = appOutputFile.getParentFile().getParent() +File.separator + TEMP_SELECTED_HAP_DIR; try { + LOG.error("compressAppModeForMultiProject called!!!!!!!"); File tempSelectedHapDir = new File(tempSelectedHapPath); FileUtils.makeDir(tempSelectedHapDir); File tempHapDir = new File(tempPath); @@ -716,10 +717,12 @@ public class Compressor { private static String disposeHap(Utility utility, List seletedHaps, String tempDir, String finalPackInfoStr) throws BundleException, IOException { // dispose hap conflict + LOG.error("disposeHap called!"); if (utility.getFormattedHapList().isEmpty()) { return finalPackInfoStr; } for (String hapPath : utility.getFormattedHapList()) { + LOG.error("hapPath is " + hapPath); if (seletedHaps.contains(new File(hapPath).getName())) { LOG.error("Compressor::disposeHap file duplicated, file is " + new File(hapPath).getName()); throw new BundleException("Compressor::disposeHap file duplicated, file is " diff --git a/jar/app_packing_tool.jar b/jar/app_packing_tool.jar index 8c69eaabfe43ece711115ddaafa47d6ee3897a4f..3fa1eee4dd974e0e6cb4154f7e7a4a5aefc17838 100644 Binary files a/jar/app_packing_tool.jar and b/jar/app_packing_tool.jar differ