Skip to content

Latest commit

 

History

History
112 lines (73 loc) · 5.4 KB

README.md

File metadata and controls

112 lines (73 loc) · 5.4 KB

MBChallenge

About the Project

This project involves creating an application to query exchanges using the CoinAPI.io. The app lists available exchanges and provides specific details about each, such as name, ID, and trading volume.

Screens

Features

  • List Screen: Displays a list of exchanges with the following information:
    • Exchange Name
    • Exchange ID
    • 24-hour Trading Volume (USD)
  • Detail Screen: Shows detailed information about an exchange when an item is selected from the list.
  • HTTP Error Handling: The app handles HTTP errors as specified in the CoinAPI documentation, as well as generic errors and network issues.
Error Code Meaning
400 Bad Request -- There is something wrong with your request
401 Unauthorized -- Your API key is wrong
403 Forbidden -- Your API key doesn't have enough privileges to access this resource
429 Too many requests -- You have exceeded your API key rate limits
550 No data -- You requested specific single item that we don't have at this moment

API Credentials

To use this app, you need an API key from CoinAPI.io. This key is securely managed using the secrets-gradle-plugin. If the secrets/apiKey.properties file is missing, fallback values from default.properties will be used.

For more information and to obtain an API key, visit here.

Setting Up the Project with Your CoinAPI Key

  1. Ensure the "default.properties" File is Configured:

    • In the root directory of the project, ensure that there is a default.properties file with default values, including a placeholder for the CoinAPI Key.

    Example default.properties:

    COIN_API_KEY=*********************************

    Replace the placeholder with your actual API key. It should look like this:

    COIN_API_KEY=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
    • The placeholder XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX will be used during the compilation process, it is important that you add a real API key.

Important Notes

  • Security: Make sure to exclude files containing sensitive information, such as API keys, from version control to protect your credentials.

By following these steps, you ensure that the project builds successfully in all environments.

How to Run the Project

  1. Clone the repository to your local machine.
  2. Insert your API key as described above.
  3. Open the project in Android Studio and compile.

Development Environment

  • Android Studio Koala | 2024.1.1 Patch 1
  • Build #AI-241.18034.62.2411.12071903
  • Java JDK 17

Technologies Used in This Project

Module Dependencies

Testing (Unit, Integration, Instrumentation)

  • Espresso: Used for UI testing to ensure the app's user interface behaves as expected.
  • Mockk: Employed for unit, integration, and instrumentation tests to mock dependencies and isolate the test scenarios.
  • Robot Pattern: A testing pattern used to improve test readability and maintainability by encapsulating interactions with the UI.

Integration Test Approach

For this project, I opted for an integrated testing approach in the data layer to avoid redundant unit tests for each implementation. While unit tests are effective for the domain and presentation layers, they can become repetitive when testing data interactions.

By adopting the Repository Pattern, I perform integrated tests that cover the entire data flow, from the data source (API or DAO) to the repository EG: Data layer: RepositoryImpl -> DataSource -> Source API (remote) or Database DAO (local). This ensures the correctness of the data flow by validating end-to-end data retrieval and error handling. This approach reduces unnecessary tests and enhances system reliability by focusing on complete data flows rather than isolated components.

Dependency Injection

  • Koin - Dependency Injection Framework

Presentation Pattern

Architecture

Design System

The project includes a comprehensive in-house design system named Pluto, implemented within the libraries/design module. Pluto centralizes all UI/UX design elements and components, ensuring a consistent and cohesive user experience throughout the application.

Credits

Credit to Mercado Bitcoin for the challenge requirements.