Configure Android

To connect Android app with your youtube channel is you must edit file data/Constant.java There are two part you must change with your own,

1.CHANNEL_ID, PLAYLIST_ID Tutorial to get CHANNEL_ID & PLAYLIST_ID --> http://blog.dream-space.web.id/?p=185

data/Constant.java
. . .

/* replace with your own CHANNEL_ID & PLAYLIST_ID */
public static String CHANNEL_ID = "UCgc00bfF_PvO_2AvqJZHXFg";
public static String PLAYLIST_ID = "UUgc00bfF_PvO_2AvqJZHXFg";

. . .

2.API_KEY Tutorial to get API_KEY --> http://blog.dream-space.web.id/?p=178 Since version 3.0 we implement remote config to store API_KEY, you can read page Remote Config here to see the step :

Last updated