Back to project page fooplayer-android.
The source code is released under:
GNU General Public License
If you think the Android project fooplayer-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mauriciogiordano.fooplayer.network; /* w w w . j a v a2 s . co m*/ /** * Created by mauricio on 10/31/14. */ public class Endpoints { public static class LastFM { public static String HOST = "ws.audioscrobbler.com"; public static String PATH = "2.0"; } public static class Youtube { public static String HOST = "www.googleapis.com"; public static String PATH = "youtube/v3/search"; } public static class YoutubeRTSP { public static String HOST = "gdata.youtube.com"; public static String PATH = "feeds/api/videos/"; } }