1.0.6 • Published 2 years ago

capacitor-zip-plugin v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

capacitor-zip

Work in progress. Zip and Unzip files on android. Based on Zip4j library. Zip functionnality still not implemented only unzip works for now. Tested on capacitor v3, not tested on older capacitor versions.

Install

npm install capacitor-zip
npx cap sync

Android 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>
ParamType
optionsUnzipOptions

Returns: Promise<UnzipResult>


Interfaces

UnzipResult

PropType
messagestring
uristring

UnzipOptions

PropType
sourcestring
destinationstring
passwordstring
1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago