Clean Android Architecture Sample App
- Module based app [domain, data, presentation, ui]
- Android Architecture Components
- Dagger 2.16
- Room
- Retrofit
- Glide
- AndroidX
- Clone the repo and open it in Android Studio 3.3 or above
- Create a file
secret_keys.gradle
at root lavel. i.e. same folder asdependencies.gradle
- Go to https://www.themoviedb.org/ for getting API Key
- The content of the
secret_keys.gradle
would be
ext {
tmdb_api_key = "<YOUR_API_KEY_FROM_TMDB>"
}