flutter_downloader
flutter_downloader copied to clipboard
Flutter Downloader - A plugin for creating and managing download tasks.
This is my code: PDFDocument document; ReceivePort _receivePort = ReceivePort(); double progress = 0; static const String _named = 'downloading'; static void downloadCallback( String id, DownloadTaskStatus status, int progress) {...
Please add feature to download stream data other than URLs.
I tried with the provided example. ``` WidgetsFlutterBinding.ensureInitialized(); await FlutterDownloader.initialize(debug: true); ``` No error, only `Lost connection to device.` Both simulator and real device not working. Removing this line from...
i've to setup like docs, but notification not shown like android, i can to open file of downloaded, but the notification not working, just foreground in iOS, i've using `1.7.1`
As comment in issue #533 , i update to v1.7.1γAnd the problem is occured: ` java.lang.AssertionError: annotationType(): unrecognized Attribute name MODULE (class com.sun.tools.javac.util.UnsharedNameTable$NameImpl) at com.sun.tools.javac.util.Assert.error(Assert.java:133) at com.sun.tools.javac.code.TypeAnnotations.annotationType(TypeAnnotations.java:231) at com.sun.tools.javac.code.TypeAnnotations$TypeAnnotationPositions.separateAnnotationsKinds(TypeAnnotations.java:294) at...
savedDir: /Users/tharin/Library/Developer/CoreSimulator/Devices/314092F4-8862-4CB9-AE4F-66631CDC3B26/data/Containers/Data/Application/B522A48E-EAF4-4AA0-A4B9-A957F399E061/Documents
FBSDKLog: Missing [FBSDKAppEvents appEventsState.appID] for [FBSDKAppEvents flushOnMainQueue:] 2021-09-07 10:20:05.929659+0545 Runner[91079:784497] startBackgroundIsolate 2021-09-07 10:20:05.932307+0545 Runner[91079:784497] *** Assertion failure in -[FlutterDownloaderPlugin startBackgroundIsolate:], FlutterDownloaderPlugin.m:127 2021-09-07 10:20:05.965536+0545 Runner[91079:784497] *** Terminating app due to uncaught...
I store the downloaded files in the application's files directory (using `getApplicationDocumentsDirectory()` of the `path_provider` plugin). It works ok excepted when trying to remove the file on Android with the...
The file after successfully being download when I tap on notification then it does open the downloaded file. Please help Image of my code:  Image of my android manifest...
Hi, First, thank you for an awesome library π. I am using flutter_downloader: ^1.6.0 and Flutter 2.7 I built an app that downloads music and plays it and I have...