Skip to content
cesarferreira edited this page Oct 24, 2014 · 17 revisions

QuickUtils

QuickUtils is a development library for the Android platform. It is intended to make application development easier and consistent throughout your applications.

Including in your project

Gradle import:

dependencies {
    compile 'com.cesarferreira.quickutils:library:2.+'
}

Setup

Init the library in your Application class for instance

QuickUtils.init(context);

How to Use

Really simple usage, you just need to specify the category and the method you want to use.

QuickUtils.__category__.__method__

e.g.

QuickUtils.log.e("this is an error");
QuickUtils.system.vibrate(1000);
QuickUtils.math.poundsToKg(weight);
QuickUtils.sdcard.exists(someFile);
QuickUtils.security.encodeBase64(someString);
// Etc.