Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatfiredev/minibrothereye
MVVM Android sample app using Hilt, Databinding, Paging 3 and more Android Jetpack Components.
https://github.com/thatfiredev/minibrothereye
Last synced: 11 days ago
JSON representation
MVVM Android sample app using Hilt, Databinding, Paging 3 and more Android Jetpack Components.
- Host: GitHub
- URL: https://github.com/thatfiredev/minibrothereye
- Owner: thatfiredev
- License: apache-2.0
- Created: 2020-06-26T00:23:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T20:19:27.000Z (over 3 years ago)
- Last Synced: 2024-10-19T02:14:08.168Z (3 months ago)
- Language: Kotlin
- Homepage:
- Size: 350 KB
- Stars: 31
- Watchers: 1
- Forks: 9
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Mini Brother Eye
Mini Brother Eye is a small demo app that tries to follow Modern Android Development best practices
and uses the latest tools and Open Source Libraries.It is supposed to be a smaller version of DC's [Brother Eye](https://dc.fandom.com/wiki/Brother_Eye_(New_Earth)).
## Techstack and Open Source libraries
### Code
- Minimum SDK Level 19
- [Kotlin Coroutines](https://github.com/Kotlin/kotlinx.coroutines) for asynchronous operations.
- [Retrofit2](https://github.com/square/retrofit) to make HTTP calls to the REST API.
- [GSON](https://github.com/google/gson) to deserialize JSON requests.
- [Coil](https://github.com/coil-kt/coil) for image loading.
- [Material Components](https://github.com/material-components/material-components-android)
to display Material Design Components.
- [Material Motion](https://material.io/develop/android/theming/motion/) - transitions for navigation.
- Android Jetpack
- [DataBinding](https://developer.android.com/topic/libraries/data-binding)
- [LiveData](https://developer.android.com/topic/libraries/architecture/livedata)
- [Navigation Component](https://developer.android.com/guide/navigation)
- [Paging Library 3](https://developer.android.com/topic/libraries/architecture/paging) (alpha)
- [Room](https://developer.android.com/topic/libraries/architecture/room)
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel)
- [Hilt](https://developer.android.com/training/dependency-injection/hilt-android) (alpha) for
Dependency Injection
- [RamiJ3mli/PercentageChartView](https://github.com/RamiJ3mli/PercentageChartView) to display
progress information### Tests
- [Robolectric](https://github.com/robolectric/robolectric) and
[AndroidX Test libraries](https://developer.android.com/training/testing) for Unit Testing.
- [Mockito](https://github.com/mockito/mockito) to create the mocks used in the Unit Tests.
- [MockWebServer](https://github.com/square/okhttp/tree/master/mockwebserver) to mock web server
calls.## License
```
Copyright 2020 Rosário Pereira FernandesLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttps://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```