materialup icon indicating copy to clipboard operation
materialup copied to clipboard

Unofficial MaterialUp API Wrapper for Android.

Material Up Api Wrapper

Unofficial Material Up API Wrapper for Android.

Usage

Get popular posts:

MaterialUp.getPosts(page, MaterialUp.SORT.POPULAR, new MaterialUpCallback() {
    @Override
	public void onSuccess(List <Post> posts, Response response) {
		// do stuff with posts!
	}

	@Override
	public void onFailure(Request request, IOException e) {
		// show a toast!

	}
});

Get latest posts:

MaterialUp.getPosts(page, MaterialUp.SORT.LATEST, new MaterialUpCallback() {
    @Override
	public void onSuccess(List <Post> posts, Response response) {
		// do stuff with posts!
	}

	@Override
	public void onFailure(Request request, IOException e) {
		// show a toast!

	}
});

Download

Gradle:

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    // ... other dependencies here
    compile'com.github.Alelak:materialup:1.1.3'
}