triniwiz / nativescript-downloader

Apache License 2.0
32 stars 18 forks source link

Ability to save to the gallery #48

Open vahidvdn opened 4 years ago

vahidvdn commented 4 years ago

Is there any possibility to download the image to the gallery?

ffninja commented 4 years ago

const dir = android.os.Environment.DIRECTORY_DCIM; const path = android.os.Environment.getExternalStoragePublicDirectory(dir).getAbsolutePath();

const downloaderId = downloader.createDownload({ url: imageUrl, path: path });

worked for me

vahidvdn commented 4 years ago

@ffninja How about iOS?