https://github.com/wojtekkula3/dogsexercise
App that displays dogs breeds from API
https://github.com/wojtekkula3/dogsexercise
android hilt jetpack-compose kotlin mvv retrofit2
Last synced: 5 days ago
JSON representation
App that displays dogs breeds from API
- Host: GitHub
- URL: https://github.com/wojtekkula3/dogsexercise
- Owner: wojtekkula3
- Created: 2025-02-19T19:49:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-21T09:56:58.000Z (4 months ago)
- Last Synced: 2025-06-14T13:02:37.465Z (5 days ago)
- Topics: android, hilt, jetpack-compose, kotlin, mvv, retrofit2
- Language: Kotlin
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐕 Dogs exercise
This application displays a list of dog breeds fetched from a REST API. When a breed name is tapped, it opens a screen with
the breed name.### Features
- Fetches and displays a list of dog breeds from a REST API.
- Opens a detailed screen with the breed name when a breed is selected.### Architecture
- The `breeds_list` module is implemented using the **MVVM** architecture with Jetpack Compose for the UI layer.
- The `breed_details` module has Fragment to show that Compose and Fragments can live side by side.### Setup
1. Clone the repository.
2. Open the project in Android Studio.
3. Build the project to download dependencies and set up the environment.### Refactoring
The `breeds_list` module was at first structured according to **VIPER** architecture and has been refactored to use the
**MVVM** architecture to better accommodate potential future business requirement changes.