RecyclerView Loading With Facebook Shimmer Effect Android Example
| | |

RecyclerView Loading With Facebook Shimmer Effect Android Example

As an Android user and developer, I am always attracted to great apps with nice and meaningful animations. To me, such apps not only deliver great features to make their user life easier but also their experience to the next level from the team behind them. I often really like those animation and also try…

Improving App Network Architecture With Retrofit And Kotlin Coroutine Call Adapter
| | | | | | |

Improving App Network Architecture With Retrofit And Kotlin Coroutine Call Adapter

Almost in every Android mobile application, we have to deal with network calls and most of the time we end up using Retrofit. No doubt Retrofit is our favorite library when it comes to networking. Kotlin and now coroutine has made Networking on Android even easier than before. I’ve recently listened to this talk by…

Dagger With Retrofit And RxJava Example | RecyclerView
| | |

Dagger With Retrofit And RxJava Example | RecyclerView

This is the third part of Dagger with Retrofit tutorial. In this part, we’re going to make our network request with RxJava and simply show data in RecyclerView. Note: I strongly recommend you to see my previous blogs this series. If you haven’t seen my previous blogs, then I’m afraid you will not understand. So, without further ado…

Dagger with Retrofit Example – Using Dependency Injection in Activity
| |

Dagger with Retrofit Example – Using Dependency Injection in Activity

This is the second part of Dagger with Retrofit tutorial. In the first part, we’ve achieved the hard part of how to set up dependency injection. In this article, we’re gonna see how we can use the dependencies in our Activity. So, let’s begin with adding Dagger to our Activity. Below is the MainActivity. @Override protected void…

Dagger with Retrofit Example – Set up Dependency Injection
| |

Dagger with Retrofit Example – Set up Dependency Injection

 Today, we’re going to learn about Dagger 2. Dagger 2, first of all, is really an annotation processor or just the code generator. Many of the people seem to think that Dagger 2 is how you do dependency injection, actually, it’s not. It is just a boilerplate code generator and dependency injection is something…