Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 981 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 981 Bytes

UtilsLib

A general utility library for Android Development

Checkout the Wiki page to get started

Include Library


Maven

The Utility Library is available in Maven respository at Bintray and can be accessed via jCenter.

dependencies {
    compile 'com.spazedog.lib:utils-lib'
}

Android Studio

First download the utilsLib-release.aar file.

Place the file in something like the libs folder in your module.

Open your build.gradle file for your module (not the main project version).

dependencies {
    compile(name:'utilsLib-release', ext:'aar')
}

repositories {
    flatDir {
        dirs 'libs'
    }
}

Eclipse/ADT

Download the source and import it into eclipse. Then simply include the new library project to your main project.