Skip to content

CodepathAndroid3/CodePathProjects

Repository files navigation

CodePath Original App Design Project

SDW Shows

Table of Contents

  1. Overview
  2. Product Spec
  3. Wireframes
  4. Schema

Overview

Description

An app that allows users to look at the current most popular TV shows and see some data about those TV shows.

App Evaluation

[Evaluation of your app across the following attributes]

  • Category: Entertainment

  • Mobile: Taking picture for the user profile picture.

  • Story: Do you ever get tired of having to keep track of the episodes and TV shows you've watched on a text document or mentally keep track? This app is designed to resolve those issues!

  • Market: Anyone who watches TV shows and wants to be up to date.

  • Habit: TV shows are already habit-forming – our app is simply an extension, allowing users to check on their shows as frequently as desired.

  • Scope: Several weeks to establish a foundation.

Product Spec

1. User Stories (Required and Optional)

Required (Must-Have) Stories

  • The app must retrieve TV show data from the network and present this data within the app.
  • Home Page *[X] Contain list of popular TV shows.
  • Detail Page
    • Contain TV shows, overview.
    • [] Picture of TV show
    • "Add Favorite" button.
  • Profile Page
    • Camera for profile picture.
    • [] Any personal user note.
    • Sign-Out Button.
  • Login page that allows users to log in or sign up

Optional Nice-to-have Stories

  • [] Detail Page:
    • [] Contain trailer for the show.
    • [] Genre tag.
    • [] Episode watch count (Through user writing a note)
  • [] Notification of new episode, to show their favorite.
  • ...

2. Screen Archetypes

  • Login
  • Register - User signs up or logs into their account
    • Upon download/reopening of the application, the user is prompted to log in to gain access to their profile information to be properly matched with another person.
  • Home Screen
    • List of TV shows on a main page.
    • Has a bottom bar connecting to profile, home and favorites page
  • Profile Screen
    • Allows user to upload a photo and fill in information that is interesting to them and others
    • ....
  • Detail view
    • When a TV show is clicked on the main page, navigates to here
    • Shows a trailer of the TV show and list of episodes
    • ....
  • Favorites List
    • Shows a list of TV shows that the user wants to keep track of
    • ....

3. Navigation

Tab Navigation (Tab to Screen)

  • [Home (List of TV shows]
  • [Favorite Tab (Shows your favorite shows, or those you mark to keep track of)]
  • [Profile]

Flow Navigation (Screen to Screen)

  • [Home (List of TV shows)]
    • []Favorite Window
    • []Profile Window
    • Shows Details
  • [] Favorite Window
    • [] Shows
    • ...

Wireframes

[Add picture of your hand sketched wireframes in this section]

Walkthrough.gif

[BONUS] Digital Wireframes & Mockups

[BONUS] Interactive Prototype

Schema

Models

TV Popular

Property Type Description
poster_path String or null link to a picture or poster of this TV show
popularity number stars, says rating
original_name String name of TV show
overview String Description of TV show
id String ID number of this TV show

TV Videos

Property Type Description
key String key to youtube link of trailer
id String id number of this video
name String name of TV show trailer
overview String Description of TV show

TV Seasons

Property Type Description
season_number integer season number of TV show
tv_id integer id number of the TV show
episodes array[object] List of TV episodes for the season
name String name of this episode

Favorite TV Shows

Property Type Description
poster_path String or null link to a picture or poster of this TV show
popularity number stars, says rating
original_name String name of TV show
overview String Description of TV show
id String ID number of this TV show

Networking

List of network requests by screen

  • Home Feed Screen
    • (GET) get a list of TV shows
      client.get(https://api.themoviedb.org/3/tv/popular?api_key={api_key}), new JsonHttpResponseHandler() {
         @SuppressLint("NotifyDataSetChanged")
         @Override
         public void onSuccess(int statusCode, Headers headers, JSON json) {
             Log.d(TAG, "OnSuccess" + json);
             JSONObject jsonObject = json.jsonObject;
             try {
                 JSONArray results = jsonObject.getJSONArray("results");
      
             } catch (JSONException e) {
                 Log.e(TAG, "Hit json exception", e);
             }
         }
      
         @Override
         public void onFailure(int statusCode, Headers headers, String response, Throwable throwable) {
             Log.d(TAG, "OnFailure");
         }
      });
      ``` List endpoints if using existing API such as Yelp]

Movie Database API

Base URL - https://api.themoviedb.org/3

HTTP Verb Endpoint Description
GET /tv/popular List of Popular TV Shows
GET /tv/{tv_id}/season/{season_number} Details for Season
GET /tv/{tv_id}/videos Videos for TV Show

Notes: https://developers.themoviedb.org/3/tv-episodes/get-tv-episode-details

Screens:

  • Login Screen - GET,Update/PUT for SignUp
  • Home Screen - Read/GET TV Popular Shows,
  • Details Screen - Read/Get , Update/PUT
  • Profile Screen - Update/PUT
  • Favorite Screen - Read/GET User's favorite,

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages