flutter_downloader
flutter_downloader copied to clipboard
Cant download in release ios
Cant download in release ios when i in debug mode download work successfully but in release mode dont work
Same problem here!
@pragma('vm:entry-point') add this annotation above callback :)
Hello @HassanShaban,
this is working for me! But I needed use this solution too https://stackoverflow.com/a/74984125. Thank u so much!
@HassanShaban which callback do you mean?
@pragma('vm:entry-point') static void downloadCallback( String id, DownloadTaskStatus status, int progress) { print( 'Background Isolate Callback: task ($id) is in status ($status) and process ($progress)'); final SendPort send = IsolateNameServer.lookupPortByName('downloader_send_port')!; send.send([id, status, progress]); }
Same issue, any solution?
@pragma('vm:entry-point') add this annotation above callback :)
This solution worked at iOS release too.