An app that allows users to look at the current most popular TV shows and see some data about those TV shows.
[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.
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.
- ...
- 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
- ....
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
- ...
[Add picture of your hand sketched wireframes in this section]
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 |
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 |
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 |
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 |
- 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]
- (GET) get a list of TV shows
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,