Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

32 Commits

Repository files navigation

CatchAPI

CatchAPI is a Java library for Android. It makes it easy to use the Catch.com REST API. Here's a quick preview...

CatchAPIapi = newCatchAPI("MyCoolApp", context);
// sign inapi.signIn("username", "pass1234", null);
// add a new noteCatchNotenote = newCatchNote();
longtimestamp = System.currentTimeMillis();
note.creationTime = timestamp;
note.modificationTime = timestamp;
note.text = "Hello World!";
api.addNote(note);

Check out the library documentation for more. The CatchAPI class is the primary interface, so you might want to start there.

Also, take a look at the Example app to see an example of the library in use. The interesting stuff is in Dashboard.java, mostly near the bottom of the file.

About

CatchAPI is a Java Android library that makes it easy to use the Catch.com API.

Resources

Stars

16 stars

Watchers

4 watching

Forks

Releases

Packages

Contributors

Languages