Hi guys, in your opinion, what would be the best w...
# android
u
Hi guys, in your opinion, what would be the best way to download files on Android in 2020?
Ktor
client,
Retrofit
or
DownloadManager
API? Or maybe something else.
d
+1 for retrofit
a
I am pretty happy with retrofit
r
Retrofit. Ktor if multiplatform
g
If your you don’t want to cancel the call if user close the app then go for
DownloadManager
else go for
Retrofit
v
DownloadManager. Has a lot of neat configurations like internet connection and resuming downloading, if you don’t want to handle it by yourself.