Skip to content

Covid-19 World Stats an Android app that displays the global COVID-19 stats. The app showcases modern Android development practices.

License

Notifications You must be signed in to change notification settings

jeffnyauke/Covid-19-World-Stats

Repository files navigation

Covid-19 World Stats

CI Kotlin Version Gradle API GitHub license Github Followers GitHub stars GitHub forks GitHub watchers Twitter Follow

Covid-19 World Stats is an Android App that displays the latest global stats about the COVID-19 spread.

The sample Android application 📱 is built to demonstrate use of Modern Android development tools. Dedicated to all Android Developers with ❤ .

You can Install and test latest Covid-19 World Stats app from below 👇

Covid-19 World Stats App

About

  • It loads Total COVID-19 cases worldwide from API.
  • It notifies total cases of worldwide COVID-19 cases in after every 1 hours.
  • It loads COVID-19 numbers for any specific country.
  • It displays the statistics on linear charts.
  • It loads COVID related news from the W.H.O. and Google News RSS.
  • It is offline capable (Using Cache) 😃.

It uses PeriodicWorkManager which is scheduled at the first run of an app. After that, Worker will execute after every one hour of interval and will show notification on Android's system tray.

Built With 🛠

  • Kotlin - First class and official programming language for Android development.
  • Coroutines - For asynchronous and more..
  • Flow - A cold asynchronous data stream that sequentially emits values and completes normally or with an exception.
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • LiveData - Data objects that notify views when the underlying database changes.
    • ViewModel - Stores UI-related data that isn't destroyed on UI changes.
    • ViewBinding - Generates a binding class for each XML layout file present in that module and allows you to more easily write code that interacts with views.
  • Koin - Dependency Injection Framework (Kotlin)
  • Retrofit - A type-safe HTTP client for Android and Java.
  • Moshi - A modern JSON library for Kotlin and Java.
  • Moshi Converter - A Converter which uses Moshi for serialization to and from JSON.
  • WorkManager - The WorkManager API makes it easy to schedule deferrable, asynchronous tasks that are expected to run even if the app exits or device restarts.
  • Material Components for Android - Modular and customizable Material Design UI components for Android

Package Structure

dev.jeffnyauke.covid19stats    # Root Package
.
├── api                 # For API Service.
├── model               # Model classes
├── repository          # Repository to handle data from network using API.
├── di                  # Dependency Injection     
|
├── ui                  # Activity/View layer  
│   └── main            # Main Screen Activity, ViewModel and RecyclerView Adapters.
|
├── utils               # Utility Classes / Kotlin extensions
└── worker              # Worker class.

Contributing

Take a look at the open issues and feel free to pick something up.

API Sources

This app would not exist without it's data sources.

Credits

Thanks to Covid19-Notifier-IN by Shreyas Patil for inspiration.

Support

You can support via paypal

Authors

Jeffrey Nyauke

Linkedin Twitter Medium

License

MIT License

Copyright 2020 Jeffrey Nyauke

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.