-
Notifications
You must be signed in to change notification settings - Fork 70
/
Resources.java
29 lines (26 loc) · 2.26 KB
/
Resources.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.codingwithmitch.recyclerviewvideoplayer.util;
import com.codingwithmitch.recyclerviewvideoplayer.models.MediaObject;
public class Resources {
public static final MediaObject[] MEDIA_OBJECTS = {
new MediaObject("Sending Data to a New Activity with Intent Extras",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/Sending+Data+to+a+New+Activity+with+Intent+Extras.mp4",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/Sending+Data+to+a+New+Activity+with+Intent+Extras.png",
"Description for media object #1"),
new MediaObject("REST API, Retrofit2, MVVM Course SUMMARY",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/REST+API+Retrofit+MVVM+Course+Summary.mp4",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/REST+API%2C+Retrofit2%2C+MVVM+Course+SUMMARY.png",
"Description for media object #2"),
new MediaObject("MVVM and LiveData",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/MVVM+and+LiveData+for+youtube.mp4",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/mvvm+and+livedata.png",
"Description for media object #3"),
new MediaObject("Swiping Views with a ViewPager",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/SwipingViewPager+Tutorial.mp4",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/Swiping+Views+with+a+ViewPager.png",
"Description for media object #4"),
new MediaObject("Database Cache, MVVM, Retrofit, REST API demo for upcoming course",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/Rest+api+teaser+video.mp4",
"https://s3.ca-central-1.amazonaws.com/codingwithmitch/media/VideoPlayerRecyclerView/Rest+API+Integration+with+MVVM.png",
"Description for media object #5"),
};
}