@elvis-ibrahimi/capacitor-zip-android
v1.1.0
Published
Unzip files on android
Downloads
24
Maintainers
Readme
capacitor-zip-android
Unzip files on android.
Install
npm install @elvis-ibrahimi/capacitor-zip-android
npx cap syncAndroid permissions
Make sure to add the following permissions in the application android manifest.xml
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>API
unzip(...)
unzip(options: UnzipOptions) => Promise<UnzipResult>| Param | Type |
| ------------- | ----------------------------------------------------- |
| options | UnzipOptions |
Returns: Promise<UnzipResult>
Interfaces
UnzipResult
| Prop | Type |
| ------------- | ------------------- |
| message | string |
| uri | string |
UnzipOptions
| Prop | Type |
| ----------------- | ------------------- |
| source | string |
| destination | string |
| password | string |
