-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# DeviantArt | ||
## Open-source libraries | ||
- Minimum SDK level 21 | ||
- Target SDK level 29 | ||
- Clean MVVM architecture followed by [Android Architecture Blueprints - MVP + Clean Architecture](https://github.com/android/architecture-samples/tree/todo-mvp-clean) and [Google I/O Android App](https://github.com/google/iosched) | ||
- [Kotlin](https://kotlinlang.org/) based. | ||
- [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) + [Flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/) for asynchronous. | ||
- [Dagger-Hilt](https://dagger.dev/hilt/) for dependency injection. | ||
- [Data binding](https://developer.android.com/topic/libraries/data-binding) | ||
- JetPack | ||
- [LiveData](https://developer.android.com/topic/libraries/architecture/livedata) - in viewmodel class, expose state to view. | ||
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) - keep data survive in orientation change. | ||
- [Workmanager](https://developer.android.com/topic/libraries/architecture/workmanager) - run deferred background. | ||
- [Paging 3](https://developer.android.com/topic/libraries/architecture/paging/v3-overview) - help loadmore data with recyclerview | ||
- [Retrofit2 & OkHttp3](https://github.com/square/retrofit) - construct the REST APIs and paging network data. | ||
- [Gson](https://github.com/google/gson) - A modern JSON library for Kotlin and Java. | ||
- [Timber](https://github.com/JakeWharton/timber) - logging. | ||
- [Material-Components](https://github.com/material-components/material-components-android) |