Join Slack
Powered by
I’m trying to get some thoughts on which library/f...
# getting-started
n
nawar
04/17/2017, 11:18 AM
I’m trying to get some thoughts on which library/framework to use, in my next
Android
project, for HTTP and image download and plays well with Kotlin.
m
miha-x64
04/17/2017, 11:22 AM
OkHttp is standard in HTTP, Retrofit — in REST. For image downloading I prefer Picasso, but many people use Glide.
n
nawar
04/17/2017, 11:31 AM
So, you’d use all those in conjunction. Great to know.
m
miha-x64
04/17/2017, 11:48 AM
Yes, Retrofit depends on OkHttp, and Picasso has an option to use OkHttp (OkHttp3Downloader). So, they can use the same cache and thread pool.
n
nawar
04/17/2017, 12:17 PM
Thanks for the tips Mike 🙂
nawar
04/17/2017, 12:20 PM
Not just quite used to the Android ecosystem coming from an iOS background where I handle most of the networking with
dataTask
🙂
5
Views
Open in Slack
Previous
Next