How to resume downloading a file from where it is ...
# android
j
How to resume downloading a file from where it is stopped downloading due to internet loss in ktor android
p
You can use the
Range
header and specify the number of bytes previously written, something like:
Copy code
Range: bytes=12345
🙌 1
j
Thanks