/The-Bulletin

An Android app built in Kotlin consuming NEWS API to help people to know what's happening in the world currently. It also helps users to read news by category also user can save a news in the favourite section to read it later. Users can also show the details of the news.

Primary LanguageKotlinMIT LicenseMIT

StarWars

The Bulletin

An Android app built in Kotlin consuming NEWS API to help people to know what's happening in the world currently. It also helps users to read news by category also user can save a news in the favourite section to read it later. Users can also show the details of the news.

Purpose

The app is built to showcase the uses of latest Android Architecture components and best practices to build a 1-2 page app.

Design pattern

  • The app is built with Feature based architecture which uses Model-View-ViewModel as it's core architecture

  • Each features contains 3 packages:

    • data - Holds the repository and data sources (remote/local)
    • domain - Holds the entity and model classes
    • presentation - Contains the View classes (Activity/Fragment/Adapter/ViewModel etc.)

    Tech Stack.

  • Kotlin - Kotlin is a programming language that can run on JVM. Google has announced Kotlin as one of its officially supported programming languages in Android Studio; and the Android community is migrating at a pace from Java to Kotlin.

  • Jetpack components:

    • Android KTX - Android KTX is a set of Kotlin extensions that are included with Android Jetpack and other Android libraries. KTX extensions provide concise, idiomatic Kotlin to Jetpack, Android platform, and other APIs.
    • AndroidX - Major improvement to the original Android Support Library, which is no longer maintained.
    • Lifecycle - Lifecycle-aware components perform actions in response to a change in the lifecycle status of another component, such as activities and fragments. These components help you produce better-organized, and often lighter-weight code, that is easier to maintain.
    • ViewModel -The ViewModel class is designed to store and manage UI-related data in a lifecycle conscious way.
    • LiveData - LiveData is an observable data holder class. Unlike a regular observable, LiveData is lifecycle-aware, meaning it respects the lifecycle of other app components, such as activities, fragments, or services. This awareness ensures LiveData only updates app component observers that are in an active lifecycle state.
    • Paging 3 library - The Paging library helps you load and display pages of data from a larger dataset from local storage or over network. This approach allows your app to use both network bandwidth and system resources more efficiently.
    • Room database - The Room persistence library provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite. -
  • Kotlin Coroutines - A concurrency design pattern that you can use on Android to simplify code that executes asynchronously.

  • Retrofit - Retrofit is a REST client for Java/ Kotlin and Android by Square inc under Apache 2.0 license. Its a simple network library that is used for network transactions. By using this library we can seamlessly capture JSON response from web service/web API.

  • GSON - JSON Parser,used to parse requests on the data layer for Entities and understands Kotlin non-nullable and default parameters.

  • Kotlin Flow - In coroutines, a flow is a type that can emit multiple values sequentially, as opposed to suspend functions that return only a single value.

  • Dagger Hilt - A dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project.

  • Google AdMob - AdMob is a mobile advertising subsidiary of Google

Screenshots

Splash screen

Home screen

Details

Favorites

Settings