fix condition
This commit is contained in:
parent
ef66b8e1d9
commit
80b8dd8760
|
|
@ -54,7 +54,7 @@ public class SoAndDexCopyTask implements Runnable {
|
||||||
String libPath = APK_LIB_PATH_ARRAY[0];
|
String libPath = APK_LIB_PATH_ARRAY[0];
|
||||||
String apkSoFullPath = fullLibPath(libPath);
|
String apkSoFullPath = fullLibPath(libPath);
|
||||||
File apkSoFullPathFile = new File(apkSoFullPath);
|
File apkSoFullPathFile = new File(apkSoFullPath);
|
||||||
if (apkSoFullPathFile.mkdirs()) {
|
if (!apkSoFullPathFile.mkdirs()) {
|
||||||
throw new IllegalStateException("mkdir fail " + apkSoFullPathFile.getAbsolutePath());
|
throw new IllegalStateException("mkdir fail " + apkSoFullPathFile.getAbsolutePath());
|
||||||
}
|
}
|
||||||
existLibPathArray.add(libPath);
|
existLibPathArray.add(libPath);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue