Skip to content

utkarshxf/StocksApp

Repository files navigation

STOCKS App(Android application for a stocks / etfs broking platform)

STOCKS App demonstrates modern Android development with Jetpack Compose, Hilt, Coroutines, Flow, Jetpack (Room, ViewModel), and Material Design based on MVVM architecture.

Download

Go to the Releases to download the latest APK.

Go to Features Section to know how Stocks App work.

Tech stack & Open-source libraries

  • Kotlin based, utilizing Coroutines + Flow for asynchronous operations.
  • Jetpack Libraries:
    • Jetpack Compose: Android’s modern toolkit for declarative UI development.
    • ViewModel: Manages UI-related data and is lifecycle-aware, ensuring data survival through configuration changes.
    • Navigation: Facilitates screen navigation, complemented by Compose Navigation for Screen Navigation.
    • Room: Constructs a database with an SQLite abstraction layer for seamless database access.
    • Hilt: Facilitates dependency injection.
  • Architecture:
    • MVVM Architecture (View - ViewModel - Model): Facilitates separation of concerns and promotes maintainability.
    • Repository Pattern: Acts as a mediator between different data sources and the application's business logic.
  • Retrofit2: Constructs REST APIs and facilitates paging network data retrieval.

Architecture

STOCKS App adheres to the MVVM architecture and implements the Repository pattern, aligning with Google's official architecture guidance. The architecture of STOCKS App is structured into three distinct layers: the UI layer, domain layer and data layer. Each layer fulfills specific roles and responsibilities, outlined as follows: STOCKS App follows the principles outlined in the Guide to app architecture, making it an exemplary demonstration of architectural concepts in practical application.

Architecture Overview

  • The data layer operates autonomously from other layers, maintaining purity without dependencies on external layers.
  • This loosely coupled architecture enhances component reusability and app scalability, facilitating seamless development and maintenance.
project_root
├── data
│   ├── db
│   ├── model
│   ├── network
│   └── repository
├── di
├── domain
│   ├── repository
│   └── use_case
├── ui
│   ├── explore
│   │   ├── components
│   │   ├── ExploreScreen.kt
│   │   └── ExploreScreenViewModel.kt
│   ├── product
│   │   ├── components
│   │   ├── ProductScreen.kt
│   │   └── ProductScreenViewModel.kt
│   └── theme
├── util
└── build

UI Layer

The UI layer encompasses UI elements responsible for configuring screens for user interaction, alongside the ViewModel, which manages app states and restores data during configuration changes.

  • UI elements observe the data flow, ensuring synchronization with the underlying data layer.

Domain Layer

The domain layer is responsible for encapsulating the core business logic of the application. This layer acts as an intermediary between the UI and data layers, ensuring that data is processed and business rules are enforced before being presented to the user.

Data Layer

The data layer is composed of repositories that handle business logic tasks such as retrieving data from a local database or fetching remote data from a network. This layer is designed to prioritize online access, functioning primarily as an online-first repository of business logic. It adheres to the principle of "single source of truth," ensuring that all data operations are centralized and consistent.

Local Database

The local database in our application serves as a crucial component for data persistence and offline access. It ensures that users have a seamless experience even when the app is offline or the API rate limit is exceeded. Here are some key features and implementations of our local database:

Time-To-Live (TTL)

We implement a Time-To-Live (TTL) mechanism in our local database to ensure data freshness and relevance. Each record in the database has associated createdDate and lastUpdatedDate timestamps. These timestamps help determine whether the data is still valid or if it needs to be refreshed from the remote source. The TTL logic is handled manually by checking the age of the data before serving it to the user. If the data is stale, a fresh fetch from the remote source is initiated.

Handling API Rate Limits and Offline Mode

To provide a robust user experience, our application is designed to handle scenarios where the API rate limit is exceeded or the app is offline. Here’s how we achieve this:

API Rate Limit Handling:

Caching Strategy: When the API rate limit is exceeded, the application switches to a caching strategy, serving data from the local database to avoid disruptions. Fallback Mechanism: The app detects when the API rate limit is reached and gracefully falls back to using the cached data stored locally. Offline Mode Support:

Data Synchronization: The application syncs data with the remote server whenever the network becomes available, ensuring that the local database stays updated. Local Storage: Critical data is stored locally using Room, an Android persistence library, to maintain app functionality even when offline. Users can continue to access and interact with the app without needing an active internet connection.

Data API

STOCKS App using the Alphavantage for constructing RESTful API.
Alphavantage provides a RESTful API interface to highly detailed objects built from thousands of lines of data related to stocks. These endpoints used for all the required data:

  • Alpha Intelligence - Top Gainers and Losers.
  • Fundamental data - Company Overview
  • Core Stocks API - Ticker search

Features

  • View Top gainers and losers

    • Open the app. ->click on TOP GAINERS / LOSERS Button.

  • Searching for Stocks:

    • Open the app. -> Use the search bar to find a specific stock by its symbol.

  • Viewing Stock Details:

    • Select a stock from the search results. -> View the stock's real-time data and historical charts.

  • Offline Mode

    • Data Catch in local Database.

    • TTL Catched Data

      -Whenever there is an Insert or an Update operation, the lastUpDatedDate column updated with the current timestamp. -The next time a Read operation happens, limit it by the TTL(defined in Android Client).

  • Dark Mode

    • switched dynamically(Light / Dark Mode)

Screens

Light Mode

Dark Mode

About

Android Application Using Kotlin + Android

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages