Skip to content

migueledgracia/repoStalker

 
 

Repository files navigation

Octo-Stalker

Bypass Mobile Android exercise

###Application Specification

  • Display a list of user names and profile images that belong to the bypass organization.
    • Clicking on a member will display a list of user names and profile images of who they follow.
    • This process repeats itself for the newly displayed user
  • The cache library provided needs expiration and invalidation.

Feel free to improve on any code provided.

###Provided for you

  • Models
  • Image Loading
  • Restclient

Example

####HTTP Client Example

getEndpoint().getOrganizationMember("bypasslane", new Callback<List<User>>() {
    @Override
    public void success(List<User> users, Response response) {}

    @Override
    public void failure(RetrofitError error) {}
});

####Load Image Example

ImageLoader.createImageLoader(this)
 .load("http://.../name.jpeg")
 .into(image);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors