Skip to content

Instantly share code, notes, and snippets.

@muzafakar
Created January 8, 2019 07:47
Show Gist options
  • Save muzafakar/e215506c69aa390f25e5e1aa87c394ef to your computer and use it in GitHub Desktop.
Save muzafakar/e215506c69aa390f25e5e1aa87c394ef to your computer and use it in GitHub Desktop.
public class RetrofitClient {
private static Retrofit retrofit = null;
public static String BASE_URL = "";
public static Retrofit getClient(String url) {
retrofit = new Retrofit.Builder().baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
return retrofit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment