String BASE_URL = "https://checkvoterlist.uecmyanmar.org/"; | |
Retrofit retrofit = new Retrofit.Builder() | |
.baseUrl(BASE_URL) | |
.addConverterFactory(GsonConverterFactory.create()) | |
.build(); | |
CheckVoterService checkVoterService = retrofit.create(CheckVoterService.class); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment