Back to project page xkcd.
The source code is released under:
Apache License
If you think the Android project xkcd 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.nightlynexus.xkcd; //from w w w . j a v a 2 s .com import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Path; public interface ComicService { @GET("/{number}/info.0.json") void getComic(@Path("number") int number, Callback<Comic> cb); @GET("/info.0.json") void getComicLatest(Callback<Comic> cb); }