Pokedex is a sample Android app built to show how a modern Android project should be structured. It fetches and displays Pokemon data from a public API, and uses that relatively simple premise as a canvas for demonstrating a wide range of Android development tools and patterns used in professional apps. The goal is to serve as a reference for developers learning how these pieces fit together. The app follows the MVVM architecture pattern, which stands for Model-View-ViewModel. This separates the code responsible for showing things on screen from the code that fetches and holds data. It also uses the Repository pattern, which adds another layer between the app and its data sources so that switching or combining sources stays manageable. These are the structural patterns recommended in Google's official Android architecture guidance. On the technical side, the app uses Kotlin throughout and relies on Coroutines and Flow, which are Kotlin's tools for handling work that takes time, like network requests, without freezing the app. For the local database it uses Room, which is a wrapper around Android's built-in SQLite database. Dependency injection is handled by Hilt. Images are loaded from the network using Glide. Network calls go through Retrofit. The UI uses Material Design components and includes animated transitions between screens using a library called TransformationLayout. The project is featured on Google's developer library as a reference example. It runs on Android devices with API level 21 and above, which covers most Android devices currently in use. A Jetpack Compose version of the same app exists in a separate repository for developers who want to see the same patterns applied with Android's newer UI toolkit. The author of the repository also maintains related paid resources, including books and interview guides focused on Android and Kotlin development, which are linked from the README.
← skydoves on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.