Skip to content
Yannick Signer edited this page Jun 30, 2015 · 2 revisions

Gradle

This library now works with gradle and will soon be available on the central maven repository. For the moment, it's on jCenter at Bintray. Just add the following repository to your root build.gradle:

allprojects {
    repositories {
        jcenter()
        maven { url "https://jcenter.bintray.com" }
    }
}

Then in your app build.gradle:

dependencies {
    // other repos ...
    compile 'ch.halcyon:driveimageview:1.0.0'
}

Where can I find some example code? / How do I use this?

You can find the general usage with all the possibilities here: Usage

If you want some examples that you can copy&paste then check this page: Examples

How do I contribute? / I found a bug!

See the following page for more information How To Contribute.