Back to project page VideoPlayer.
The source code is released under:
MIT License
If you think the Android project VideoPlayer 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 net.ralphpina.famigo.videoplayer.app; //ww w . j a v a 2 s .com import retrofit.Callback; import retrofit.client.Response; import retrofit.http.GET; /** * Created by ralphpina on 4/18/14. */ public interface VideoService { @GET("/feeds/api/videos?author=androiddevelopers&v=2&alt=jsonc") void videos(Callback<Response> cb); }