You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
[ react-native-zip-archive](console.error: error Error: Failed to extract file Zip file size less than minimum expected zip file size. Probably not a zip file or a corrupted zip file, js engine: hermes)
Describe the bug
[ react-native-zip-archive](console.error: error Error: Failed to extract file Zip file size less than minimum expected zip file size. Probably not a zip file or a corrupted zip file, js engine: hermes)
const unzipWithProgress = async (
zipFilePath: string,
unzipDestination: string,
dispatch: any
) => {
const progressSubscription = subscribe(({ progress }) => {
const progressPercentage = progress * 100;
console.log(
Unzipping progress: ${progressPercentage}%
);dispatch(updateProgress(progressPercentage)); // Dispatch progress updates
});
try {
await unzip(zipFilePath, unzipDestination);
} catch (error) {
console.error("Unzipping failed", error);
throw error;
} finally {
progressSubscription.remove();
}
};
info size is more than 200mb
The text was updated successfully, but these errors were encountered: