We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
好像不能后台下载,关闭Activity再打开就继续不了了
The text was updated successfully, but these errors were encountered:
可以尝试把lifecycleScope.download(url)替换成 GlobalScope.download(url), 原因应该是lifecycleScope是与Activity生命周期绑定,当关闭Activity时协程作用域lifecycleScope会被取消,对应下载任务也会被取消。
Sorry, something went wrong.
应该还可以搭配WorkManager或者Service处理后台下载任务,不过我还没有进行尝试。
好的 @lanlinju
No branches or pull requests
好像不能后台下载,关闭Activity再打开就继续不了了
The text was updated successfully, but these errors were encountered: