MovieMatch ?

MovieMach is a cutting-edge Android application that allows users to explore a vast collection of movies using modern technologies and best practices. This README file provides an overview of the app, its features, and the technologies utilized to bring it to life.

     

Features ♨️

MovieMach comes with a range of exciting features that enhance the user experience and provide seamless navigation through the world of movies:

? Pagination with Paging 3 Library : MovieMach employs the Paging 3 library to efficiently load and display large datasets of movies. This ensures smooth scrolling and optimal memory management while browsing through the movie catalog.

? MVVM Architecture: The app follows the Model-View-ViewModel (MVVM) architectural pattern. This separation of concerns enhances code organization, maintainability, and testability. It also allows for easier adoption of new features and updates.

? Dependency Injection with Hilt : Hilt, a dependency injection library for Android, is used in MovieMach to manage the injection of components, such as repositories, view models, and network services. This promotes a modular and clean codebase while simplifying unit testing.

? Network Calls with Retrofit : MovieMach leverages Retrofit, a powerful HTTP client for Android, to handle network requests. This ensures efficient communication between the app and the backend servers, facilitating the retrieval of movie data.

? Coroutines Flow Coroutines Flow for LiveData Updates: To provide real-time updates to the UI, MovieMach utilizes Coroutines Flow in combination with LiveData. This combination allows the app to observe data changes and deliver them to the UI efficiently, resulting in a responsive and up-to-date user experience.

? Room Database : MovieMach integrates the Room Persistence Library for local storage. This allows the app to cache movie data locally, enabling users to access their favorite movies even when offline.

? Image Loading with Glide Library : The Glide library is integrated into MovieMach for smooth and optimized image loading. It automatically handles image caching, resizing, and rendering, contributing to fast and visually appealing movie browsing.

Getting Started ?️

To set up MovieMach on your local machine, follow these steps:

1️⃣ Clone this repository to your preferred directory using the following command:

git clone https://github.com/carpodok/MovieMatch

2️⃣ Open the cloned project in Android Studio.

3️⃣ In order to fetch movie data, you will need an API key from The Movie Database (TMDb). You can obtain your API key by signing up at here

4️⃣ Once you have your API key, add the key into Constants object class like the following:

object Constants {

     const val API_KEY = "YOUR_API_KEY" //Replace YOUR_API_KEY with your actual TMDb API key.

     ...

}

5️⃣ Build and run the app on an emulator or a physical device.

Contact ✉️

If you have any questions, feedback, or suggestions, feel free to reach out to us. You can contact us via email at [email protected] or open an issue in this repository.

Happy movie browsing with MovieMach!

GitHub

View Github