0.2.0 • Published 2 years ago
@agorapulse/capacitor-mediastore
Manage Android media files
Install
# Capacitor 5
npm install @agorapulse/capacitor-mediastore@latest
# Capacitor 4
npm install @agorapulse/capacitor-mediastore@0.1.0
# Capacitor 3
npm install @agorapulse/capacitor-mediastore@0.0.3
# Then
npx cap sync
API
savePicture(...)
savePicture(options: SavePictureOptions) => Promise<SavePictureResult>
Param | Type |
---|
options | SavePictureOptions |
Returns: Promise<SavePictureResult>
saveToDownloads(...)
saveToDownloads(options: SaveToDownloadsOptions) => Promise<SaveToDownloadsResult>
Param | Type |
---|
options | SaveToDownloadsOptions |
Returns: Promise<SaveToDownloadsResult>
saveVideo(...)
saveVideo(options: SaveVideoOptions) => Promise<SaveVideoResult>
Param | Type |
---|
options | SaveVideoOptions |
Returns: Promise<SaveVideoResult>
Interfaces
SavePictureResult
SavePictureOptions
Prop | Type |
---|
album | string |
filename | string |
path | string |
SaveToDownloadsResult
SaveToDownloadsOptions
Prop | Type |
---|
filename | string |
path | string |
SaveVideoResult
SaveVideoOptions
Prop | Type |
---|
album | string |
filename | string |
path | string |