You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Method to request Json Information for a language in the languages folder.
Skill Level: Easy
Navigate to [MODULE]/repository.tc2rgithubrepository.source.remote.Tc2rGithubService
Add a request method to get both the Answers.json and Questions.json from a missing language folder so that application may have a way of retrieving information for more than one type of quiz.
Example:
@GET("Tc2r1/DevInterview_Questions/master/Languages/Android/answers.json")
suspend fun requestAndroidAnswers(): Response<AnswersResponse>
// Gets answers objects
@GET("Tc2r1/DevInterview_Questions/master/Languages/Android/questions.json")
suspend fun requestAndroidQuestionsJson(): Response<QuestionsResponse>
### Optionally:
Additionally create the methods that will evoke these calls.
The text was updated successfully, but these errors were encountered:
This issue has been assigned to @Shrikant-Wankhade!
It will become unassigned if it isn't closed within 7 days.
A maintainer can also add the Pinned label to prevent it from being unassigned.
Add Method to request Json Information for a language in the languages folder.
Skill Level: Easy
Navigate to
[MODULE]/repository.tc2rgithubrepository.source.remote.Tc2rGithubService
Add a request method to get both the Answers.json and Questions.json from a missing language folder so that application may have a way of retrieving information for more than one type of quiz.
Example:
The text was updated successfully, but these errors were encountered: