增加异常保护

TempBranch
Matthew 8 months ago
parent 78b00b42e9
commit 9a3edcd087

@ -1254,6 +1254,12 @@ public class MpMasterService extends Service {
}
}
try {
destPathFile.mkdirs();
} catch (Exception ex) {
ex.printStackTrace();
}
copyAssetsDir(context, "mpmst", destPath);
return true;
}

Loading…
Cancel
Save