Get It
Include In your Project
Clog can be added to your project from Jitpack through Gradle.
Add this to your project-level build.gradle:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add this to your module's dependencies:
dependencies {
...
compile('com.github.cjbrooks12:Clog:v1.3.0') {
transitive = true
}
}
Alternatively, use the preconfigured Clog profiles for Android or Log4j:
dependencies {
...
compile('com.github.cjbrooks12:Android-Clog:v1.3.0@aar') {
transitive = true;
}
}
dependencies {
...
compile('com.github.cjbrooks12:Clog4j:v1.3.0') {
transitive = true;
}
}
Github
Full source can be viewed on Github. Feel free to send me a PR.
Download the most recent commits, or see instructions for installing with Maven, at Jitpack.