https://github.com/rajkumarbhakta/pixy
Stock image application that fetched data from Unsplash API
https://github.com/rajkumarbhakta/pixy
clean-architecture coil-kotlin coroutine hilt hilt-android jetpack-android jetpack-compose jetpack-navigation kotlin-android mvvm-android paging3
Last synced: 8 months ago
JSON representation
Stock image application that fetched data from Unsplash API
- Host: GitHub
- URL: https://github.com/rajkumarbhakta/pixy
- Owner: Rajkumarbhakta
- License: gpl-3.0
- Created: 2023-08-27T19:36:57.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-15T17:42:27.000Z (about 2 years ago)
- Last Synced: 2025-02-09T14:48:20.271Z (over 1 year ago)
- Topics: clean-architecture, coil-kotlin, coroutine, hilt, hilt-android, jetpack-android, jetpack-compose, jetpack-navigation, kotlin-android, mvvm-android, paging3
- Language: Kotlin
- Homepage:
- Size: 3.81 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pixy
Stoke image application that fetched data from [Unsplash API](https://unsplash.com/developers).
## Tech Stack & Libraries
- Jetpack
- [Compose](https://developer.android.com/jetpack/compose): A recommended modern toolkit for
building native UI.
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel): A business
logic or screen level state holder.
- [Room](https://developer.android.com/training/data-storage/room): An abstraction layer over
SQLite to allow fluent database access
- [Navigation](https://developer.android.com/jetpack/compose/navigation): For navigating screens
and [Hilt Navigation Compose]
- [Paging 3](https://developer.android.com/topic/libraries/architecture/paging/v3-overview):
Helps you load and display pages of data from a larger dataset from local storage or over
network.
- [Coroutines](https://developer.android.com/kotlin/coroutines)
with [Flow](https://developer.android.com/kotlin/flow) for asynchronous.
- [Dagger Hilt](https://dagger.dev/hilt/) for dependency injection.
- [Retrofit](https://square.github.io/retrofit/) for networking.
- [Gson](https://github.com/google/gson) for serialisation.
- [Coil](https://github.com/coil-kt/coil): An image loading library for Android backed by Kotlin
Coroutines.
## Architecture
The app follows
the [official architecture guidance](https://developer.android.com/topic/architecture) for Android
apps.
## API Key
Create an account on [Unsplash](https://unsplash.com/developers) obtain the secret keys then you can
set them in ```~/apikey.properties``` to access the API.
```
ACCESS_KEY = 'Your Access Key'
SECRET_KEY = 'Your Secret Key'
APPLICATION_ID = 'Your Application Id'
```
## Screenshots
| Home | Detail | Search |
|:--------------------------------------------------------:|:-------------------------------------------------------------:|:------------------------------------------------------------:|
|
|
|
|
| Favourite | Categories |
|--------------------------------------------------------------------|----------------------------------------------------------------------|
|
|
|
## License
```
GNU General Public License v3.0
```