Skip to content

irfanizudin/movie-viper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MoViper

MoViper is a movie app with viper architecture pattern

moviper

Features

  • Show movie genre list
  • Show movies based on genre
  • Show movie details
  • Show movie reviews
  • Show movie trailer
  • Infinite scrolling for movie list and movie review

Tech Stack

  • UIKit
  • Programmatic UI
  • WebKit

Architecture

  • VIPER architecture pattern

Dependency

Swift Package Manager is used as a dependency manager. List of dependecies:

API

Usage

  • To run this app properly, you will need an API key from TMDB API and YouTube API.
  • After obtaining the API key, follow these steps:
    • Create a Swift file named "APIKey.swift" in the "Managers" folder.
    • Add the following code and replace "YOUR_TMDB_API_KEY" and "YOUR_YOUTUBE_API_KEY" with your respective API keys:
      struct APIKey {
          static let tmdbAPIKey = "YOUR_TMDB_API_KEY"
          static let youtubeAPIKey = "YOUR_YOUTUBE_API_KEY"
      }
      
    • The app is now ready to be run.