The Gradle dependency is available via jCenter. jCenter is the default Maven repository used by Android Studio.
Add Bintray to your repositories, for some reason this specific library doesn't seem to work via jCenter even though all of my other libraries do.
repositories {
jcenter()
maven { url "https://dl.bintray.com/jelp-app/maven" }
}
Add this in your module's build.gradle
file:
dependencies {
// ... other dependencies
compile 'io.jelp:jdcamera:1.0'
}