Hi,
I am building an Android app using Ionic and React. I have a ZIP file stored in AWS S3 that I need to download, unzip, and store the contents in the Directory.Data directory, which is part of the Android’s external storage. Since I am using Capacitor v5, I need to know which plugins to use and the procedure to achieve this.
I have some experience with ReactJS, but I am new to Ionic. If you need more information, please let me know.
You can use Filesystem Capacitor Plugin API | Capacitor Documentation to download/read the zip file and something like JSZip to unzip it.
There is this SO with some info - javascript - Capacitor App, Extracting a Zip File Locally and accessing it - Stack Overflow