Library that returns a list of GitHub Repository information given a platform and organization.
- Android studio v4.2
- Add the dependency to your main app build.gradle
implementation project(':reporetriever')
- Create an instance of RepoRetriever and initialize
private lateinit var repoRetriever: RepoRetriever .... repoRetriever = RepoRetriever()
- Call API and pass platform and organization
repoRetriever.getRepos("android","rakutentech")
- A sample app is available to call the library, however UI is not provided.
Check the output logs via Android Studio. Filter by
reporetriever
string. - Unit Tests can also be run. See
RepoRetrieverTest
.