Skip to content

droidparts/droidparts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e4f782f · Jul 4, 2017
Jun 6, 2017
Jun 26, 2017
Jun 6, 2017
Jun 26, 2017
Jun 26, 2017
Jun 6, 2017
May 24, 2017
Jul 4, 2017
Sep 8, 2012
Dec 27, 2013
Jul 4, 2017
Jun 11, 2017
Dec 23, 2014
Jun 6, 2017

Repository files navigation

DroidParts

a carefully crafted Android framework that includes:

  • DI - injection of Views, Fragments, Services, etc.
  • ORM - efficient persistence utilizing Cursors & fluent API.
  • EventBus for posting event notifications.
  • Simple JSON (de)serialization capable of handling nested objects.
  • Improved AsyncTask & IntentService with Exceptions & result reporting support.
  • Logger that figures out tag itself & logs any object.
  • RESTClient for GETting, PUTting, POSTing, DELETing & InputStream-getting, also speaks JSON.
  • ImageFetcher to asynchronously attach images to ImageViews, with caching, cross-fade & transformation support.
  • Numerous Utils.

Documentation

available at http://droidparts.org.

Download

the latest JAR, get from Maven:

<dependency>
  <groupId>org.droidparts</groupId>
  <artifactId>droidparts</artifactId>
  <version>${version.from.jar.above}</version>
</dependency>

or Gradle:

dependencies {
   compile 'org.droidparts:droidparts:${version.from.jar.above}'
}

or use as a plain old Android library project.