Learn how to integrate third party libraries to make your life easier!
- Clone repository.
- Create a new branch off master and name the branch according to the form {name}/thirdpartylibs (e.g. kenton/thirdpartylibs).
This app works by first making a GET
request to random.cat/meow
via the GetRandomCatUrlTask
. This task returns an image url
for a random cat picture. When this request finishes, the app then makes another web request to download the image bitmap via the
DownloadCatImageTask
. On completion of this request, the app loads the bitmap into an ImageView
.
- Integrate
Butterknife
into the app and convert allfindViewById
methods to using Butterknife view bindings. - Integrate
Glide
into the app and use it to load the random cat image URL into theImageView
. - When you have finished integrating the two libraries, create a pull request against master.