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
Currently, if zipped file can't be read using java.io.File API, it will fall back to ZipInputStream which can be faulty. On API level 26+ random access reading is supported through FileChannel fed to ZipFile from Apache Commons Compress. To guarantee support of this on all API versions, it's necessary either to find another way, or to maintain a fork of Apache Commons Compress, which is better to be avoided.
The text was updated successfully, but these errors were encountered:
Currently, if zipped file can't be read using
java.io.File
API, it will fall back toZipInputStream
which can be faulty. On API level 26+ random access reading is supported throughFileChannel
fed toZipFile
from Apache Commons Compress. To guarantee support of this on all API versions, it's necessary either to find another way, or to maintain a fork of Apache Commons Compress, which is better to be avoided.The text was updated successfully, but these errors were encountered: