“Interface de adaptação” Respostas de código

Android de adaptação

def retrofit_version = "2.9.0"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
Blue-eyed Bird

Android de adaptação

implementation 'com.squareup.retrofit2:retrofit:2.9.0'
Agreeable Antelope

Interface de adaptação

package com.vogella.java.retrofitgerrit;

import java.util.List;

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;

public interface GerritAPI {

    @GET("changes/")
    Call<List<Change>> loadChanges(@Query("q") String status);
}
Cruel Chicken

Respostas semelhantes a “Interface de adaptação”

Perguntas semelhantes a “Interface de adaptação”

Procure respostas de código populares por idioma

Procurar outros idiomas de código