I would like to ask for fetch bro .It can download in background service ?
@DeevD Fetch performs all downloads in the background. If you would like to continue downloads after the app is closed. You can create a Job Service or regular Service and call Fetch from there to continue downloading. Hope this helps.
thank you bro. It really help for me :D
call Fetch from there to continue downloading.
I've been through every issue here on GitHub and you mention this a lot without specifying what you mean.
Let's say I enqueue a download in WhateverActivity, how do I continue downloading the file through a service? I've already injected a Fetch instance into my Service subclass. What "continue download" method do I need to use?