drgndenis / Netflix-Clone

This project is a "Netflix Clone" mobile application developed with Swift and UIKit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Netflix-Clone

This project is a "Netflix Clone" mobile application developed with Swift and UIKit. The app integrates with the The Movie Database (TMDb) API and the YouTube API to provide images, information, and trailers for popular movies and TV shows. It follows the MVVM (Model-View-ViewModel) design pattern, which enhances modularity, testability, and maintainability.

Features

  1. Discover popular movies and TV shows
  2. Detailed information pages for movies and TV shows
  3. Watch trailers of movies and TV shows
  4. Download and view favorite movies and TV shows
  5. See upcoming movies and TV shows
  6. Search functionality to find content

Screenshots

homePage homePage2 upcoming search searching download downloads YoutubeApiInDownloads YoutubeApiInSearch

Requirements

iOS 13.0 or later
Xcode 14.0 or later

Used Libraries

SDWebImage - Used for image downloading and caching.

Data Persistence

CoreData - Used for local data storage and management.

Installation

  1. Clone this repository or download it as a zip.
  2. Install the required dependencies by running pod install in the project directory via the terminal.
  3. Go to The Movie Database (TMDb) API, create an account, and obtain your API key.
  4. Go to the YouTube API and create a project to get your YouTube API key.
  5. Open the Contents.swift file inside the Services folder and replace the empty strings with your actual API keys:
    struct Constants {
    static let API_KEY = "YOUR_TMDB_API_KEY"
    static let baseURL = "https://api.themoviedb.org"
    static let youtubeAPI_KEY = "YOUR_YOUTUBE_API_KEY"
    static let youtubeBaseURL = "https://youtube.googleapis.com/youtube/v3/search?"
    }
  1. Open Xcode, open NetflixClone.xcworkspace, and run the app on a simulator or a real device.

About

This project is a "Netflix Clone" mobile application developed with Swift and UIKit.


Languages

Language:Swift 100.0%