Skip to content

Instantly share code, notes, and snippets.

@Alelak
Created November 20, 2015 20:47
Show Gist options
  • Save Alelak/aba031c325b7ddfece91 to your computer and use it in GitHub Desktop.
Save Alelak/aba031c325b7ddfece91 to your computer and use it in GitHub Desktop.
Materialup code snippets
MaterialUp.getPosts(context, page, MaterialUp.SORT.POPULAR, new MaterialUpCallback() { // use MaterialUp.SORT.LATEST for latest posts
@Override
public void onSuccess(List <Post> posts, Response response) {
// do stuff with posts!
}
@Override
public void onFailure(Request request, IOException e) {
// show a toast!
}
});
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
// ... other dependencies here
compile'com.github.Alelak:materialup:1.1.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment