Back to project page iwannawatch-android.
The source code is released under:
MIT License
If you think the Android project iwannawatch-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.meoyawn.iwannawatch.doers; // www . j a v a 2 s.com import com.meoyawn.iwannawatch.models.Search; import retrofit.http.GET; import retrofit.http.Query; import rx.Observable; /** * Created by adel on 3/1/14 */ public interface TheMovieDbApi { @GET("/search/movie?search_type=ngram") public Observable<Search> search(@Query("query") CharSequence query); }