/inmobilestest

1. I need a small application, that first make a single API GET request to https://api.github.com/search/repositories?q=created:>2019-11-01&sort=stars&order=desc&page=0 2. Display the result in a list: Data to display: a. From parent object: id, name, full_name b. From “owner” object: id, login, avatar_url 3. Display a single selection from the listing in another view, it could be an activity or fragment or fragment dialog (on item clicked, go to another view) . 4. Add a Header Layout that display a timer that count the time while the application is opened. 5. Add a toggle button that toggles the list between a. Default order (same order fetched from API) b. Ascending order by owner id Use a sorting algorithm of your choice without relying on predefined sorting from the native Java classes/functions. 6. Bonus : handle pagination by incrementing the value of “page” param in the request, while taking into consideration point 5 for displaying the newly fetched items(items sorting)

Primary LanguageKotlin

This repository is not active